Reports a number in the range 0 to 140, not including 140 itself, that represents the given color, specified in the HSB spectrum, in NetLogo's color space.
The first value (hue) should be in the range of 0 to 360, the second and third (saturation and brightness) in the range between 0 and 100.
The color reported may be only an approximation, since the NetLogo color space does not include all possible colors.
show approximate-hsb 0 0 0 => 0 ;; (black) show approximate-hsb 180 57.143 76.863 => 85 ;; (cyan)
See also extract-hsb, approximate-rgb, extract-rgb.
Take me to the full NetLogo Dictionary