Method: Processing::GraphicsContext#saturation
- Defined in:
- lib/processing/graphics_context.rb
#saturation(color) ⇒ Numeric
Returns the saturation value of the color.
783 784 785 786 |
# File 'lib/processing/graphics_context.rb', line 783 def saturation(color) _, s, = color2raw__(color).to_hsv s * (@hsbColor__ ? @colorMaxes__[1] : 1) end |