Searched refs:dH (Results 1 – 2 of 2) sorted by relevance
98 dH = 0.0; in RGBtoHSV()104 dH = ( dG - dB ) / cDelta; in RGBtoHSV()108 dH = 2.0 + ( dB - dR ) / cDelta; in RGBtoHSV()112 dH = 4.0 + ( dR - dG ) / cDelta; in RGBtoHSV()114 dH *= 60.0; in RGBtoHSV()116 if( dH < 0.0 ) in RGBtoHSV()117 dH += 360.0; in RGBtoHSV()132 dH = 0.0; in HSVtoRGB()134 dH /= 60.0; in HSVtoRGB()136 sal_uInt16 n = (sal_uInt16) dH; in HSVtoRGB()[all …]
232 double dH = nHue; in HSBtoRGB() local235 if( dH == 360.0 ) in HSBtoRGB()236 dH = 0.0; in HSBtoRGB()238 dH /= 60.0; in HSBtoRGB()239 n = (sal_uInt16) dH; in HSBtoRGB()240 f = dH - n; in HSBtoRGB()
Completed in 45 milliseconds