Function to convert HSV values to RGB values
merged methods from EasyRGB (http://www.easyrgb.com/math.php?MATH=M21#text21)
and the book GRAPHICS GEMS
Namespace: VVVV.Utils.VColorAssembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871
Syntax
C# |
---|
public static void HSVtoRGB( double H, double S, double V, out double Red, out double Green, out double Blue ) |
Parameters
- H
- Type: System..::..Double
[Missing <param name="H"/> documentation for "M:VVVV.Utils.VColor.VColor.HSVtoRGB(System.Double,System.Double,System.Double,System.Double@,System.Double@,System.Double@)"]
- S
- Type: System..::..Double
[Missing <param name="S"/> documentation for "M:VVVV.Utils.VColor.VColor.HSVtoRGB(System.Double,System.Double,System.Double,System.Double@,System.Double@,System.Double@)"]
- V
- Type: System..::..Double
[Missing <param name="V"/> documentation for "M:VVVV.Utils.VColor.VColor.HSVtoRGB(System.Double,System.Double,System.Double,System.Double@,System.Double@,System.Double@)"]
- Red
- Type: System..::..Double%
Output parameter, this variable gets filled with the red value
- Green
- Type: System..::..Double%
Output parameter, this variable gets filled with the green value
- Blue
- Type: System..::..Double%
Output parameter, this variable gets filled with the blue value