private void gradientFloatTrackbarControlb_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue) { float3 Lab = AdobeColors.RGB2Lab_D65((float3)m_RGB); Lab.z = _Sender.Value; RGB = AdobeColors.HSB2RGB(Lab); }
private void floatTrackbarControlLuminance_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue) { float3 HSL = AdobeColors.RGB2HSB((float3)m_RGB); HSL.z = _Sender.Value; RGB = AdobeColors.HSB2RGB(HSL); }
private void floatTrackbarControlThetaMax_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue) { if (radioButtonCoeffs.Checked) { UpdateGraph(); } }
void ReadValue( XmlElement _parent, string _key, FloatTrackbarControl _trackbar ) { XmlElement Child = _parent[_key]; float value = float.Parse( Child.GetAttribute( "Value" ) ); _trackbar.Value = value; }
private void floatTrackbarControlTest_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue ) { outputPanelFilmic_Insomniac.ToeStrength = ComputeToeStrength(); }
private void floatTrackbarControlIG_WhitePoint_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue ) { outputPanelFilmic_Insomniac.WhitePoint = _Sender.Value; }
private void floatTrackbarControlIG_ShoulderStrength_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue ) { outputPanelFilmic_Insomniac.ShoulderStrength = ComputeShoulderStrength(); }
private void floatTrackbarControlDebugLuminanceLevel_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue ) { panelGraph_Hable.DebugLuminance = _Sender.Value; }
void AppendValue( XmlElement _parent, string _key, FloatTrackbarControl _trackbar ) { XmlElement Child = _parent.OwnerDocument.CreateElement( _key ); _parent.AppendChild( Child ); Child.SetAttribute( "Value", _trackbar.Value.ToString() ); }
private void floatTrackbarControlF_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue) { panelGraph_Hable.F = _Sender.Value; }
private void floatTrackbarControlScaleY_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue) { panelGraph_Hable.ScaleY = _Sender.Value; outputPanelFilmic_Insomniac.ScaleY = _Sender.Value; }
private void floatTrackbarControlColorTemperature_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue) { }
private void floatTrackbarControlAlpha_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue) { m_RGB.w = _Sender.Value; ColorHDR = m_RGB; }
private void floatTrackbarControlBeckmannRoughness_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue ) { if ( m_internalChange ) return; try { m_pauseRendering = true; BuildBeckmannSurfaceTexture( floatTrackbarControlBeckmannRoughness.Value ); } catch ( Exception ) { } finally { m_pauseRendering = false; } }