getHsvValueComponent method
Gets the Value (V) component in the HSV color space
Implementation
int getHsvValueComponent()
{
return Math.max(Math.max(red, green), blue);
}
Gets the Value (V) component in the HSV color space
int getHsvValueComponent()
{
return Math.max(Math.max(red, green), blue);
}