System.Drawing.Color.GetHue C# (CSharp) Method

GetHue() public method

public GetHue ( ) : float
return float
        public float GetHue() { throw null; }
        public float GetSaturation() { throw null; }

Same methods

Color::GetHue ( ) : Single

Usage Example

Beispiel #1
0
 public bool IsOldStar(Color pixelColor)
 {
     return ((pixelColor.GetHue() >= 150) &&
         (pixelColor.GetHue() <= 258) &&
         (pixelColor.GetSaturation() >= 0.10) &&
         (pixelColor.GetBrightness() <= 0.90));
 }
All Usage Examples Of System.Drawing.Color::GetHue