Important: The information in this document is obsolete and should not be used for new development.
HSV2RGB
Converts an HSV color to an RGB color.
pascal void HSV2RGB (const HSVColor *hColor, RGBColor *rColor);
hColor
- A pointer to an
HSVColor
structure (page 2-33) specifying the HSV color to be converted.rColor
- A pointer to a Color QuickDraw
RGBColor
structure. On output, the converted color.DISCUSSION
TheHSV2RGB
function converts the HSV color specified in thehColor
parameter to the RGB color pointed to in therColor
parameter.