RGBToHSV#
- Color.RGBToHSV(rgbColor, H, S, V)#
RGB の入力値から HSV 色を作成します。
- Parameters:
rgbColor (
Color
) -- 入力する色- Return _:
使用しません。
- Rtype _:
nil
- Return H:
色相(0-1)
- Rtype H:
number
- Return S:
彩度(0-1)
- Rtype S:
number
- Return V:
明度(0-1)
- Rtype V:
number
Example#
_, h, s, v = Color.RGBToHSV(Color.green)
print("H: "..h) -- 0.3333...
print("S: "..s) -- 1
print("V: "..v) -- 1