You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Colors should get a Color class that will support color arithmetic, interpolation, conversion and so on along with a use or apply method to set it as the current color.
# this
color 240, 128, 64
# would be the same as
my_red = Color.new 240, 128, 64
my_red.use
This would allow more advanced uses of colors that the present color method can't support. The color method would then act as the shorthand to the Color class.
The text was updated successfully, but these errors were encountered:
Colors should get a
Color
class that will support color arithmetic, interpolation, conversion and so on along with ause
orapply
method to set it as the current color.This would allow more advanced uses of colors that the present
color
method can't support. Thecolor
method would then act as the shorthand to theColor
class.The text was updated successfully, but these errors were encountered: