Home
last modified time | relevance | path

Searched refs:HSLColor (Results 1 – 9 of 9) sorted by relevance

/trunk/main/slideshow/source/engine/
H A Dcolor.cxx50 HSLColor::HSLTriple rgb2hsl( double nRed, double nGreen, double nBlue ) in rgb2hsl()
53 HSLColor::HSLTriple aRes; in rgb2hsl()
161 HSLColor::HSLTriple::HSLTriple() : in HSLTriple()
168 HSLColor::HSLTriple::HSLTriple( double nHue, double nSaturation, double nLuminance ) : in HSLTriple()
175 HSLColor::HSLColor() : in HSLColor() function in slideshow::internal::HSLColor
182 HSLColor::HSLColor( ::cppcanvas::Color::IntSRGBA nRGBColor ) : in HSLColor() function in slideshow::internal::HSLColor
191 HSLColor::HSLColor( double nHue, double nSaturation, double nLuminance ) : in HSLColor() function in slideshow::internal::HSLColor
198 HSLColor::HSLColor( const RGBColor& rColor ) : in HSLColor() function in slideshow::internal::HSLColor
207 double HSLColor::getHue() const in getHue()
212 double HSLColor::getSaturation() const in getSaturation()
[all …]
H A Dtools.cxx343 bool extractValue( HSLColor& o_rValue, in extractValue()
356 o_rValue = HSLColor( aTmp[0], aTmp[1], aTmp[2] ); in extractValue()
371 o_rValue = HSLColor( aTmp[0]*360.0/255.0, aTmp[1]/255.0, aTmp[2]/255.0 ); in extractValue()
/trunk/main/slideshow/source/inc/
H A Dhslcolor.hxx40 class HSLColor class
43 HSLColor();
44 explicit HSLColor( ::cppcanvas::Color::IntSRGBA nRGBColor );
45 HSLColor( double nHue, double nSaturation, double nLuminance );
46 explicit HSLColor( const RGBColor& rColor );
103 HSLColor operator+( const HSLColor& rLHS, const HSLColor& rRHS );
104 HSLColor operator*( const HSLColor& rLHS, const HSLColor& rRHS );
105 HSLColor operator*( double nFactor, const HSLColor& rRHS );
115HSLColor interpolate( const HSLColor& rFrom, const HSLColor& rTo, double t, bool bCCW=true );
H A Drgbcolor.hxx36 class HSLColor;
46 explicit RGBColor( const HSLColor& rColor );
80 HSLColor getHSLColor() const;
H A Dhslcoloranimation.hxx46 typedef HSLColor ValueType;
H A Dtools.hxx151 bool extractValue( HSLColor& o_rValue,
/trunk/main/slideshow/source/engine/activities/
H A Dinterpolation.hxx96 template<> struct Interpolator< HSLColor >
103 HSLColor operator()( const HSLColor& rFrom, in operator ()()
104 const HSLColor& rTo, in operator ()()
H A Dactivitiesfactory.cxx917 Interpolator< HSLColor >( !xNode->getDirection() ) ); in createAnimateActivity()
/trunk/main/slideshow/source/engine/animationnodes/
H A Danimationcolornode.cxx76 virtual bool operator()( const HSLColor& rColor ) in operator ()()
81 virtual HSLColor getUnderlyingValue() const in getUnderlyingValue()
83 return HSLColor( mpAnimation->getUnderlyingValue() ); in getUnderlyingValue()