class documentation
class Color:
A Color object models an RGB color.
Method | __init__ |
Construct self such that it has the given red (r), green (g), and blue (b) components. |
Method | __str__ |
Return the string equivalent of self, that is, a string of the form '(r, g, b)'. |
Method | get |
Return the blue component of self. |
Method | get |
Return the green component of self. |
Method | get |
Return the red component of self. |
Instance Variable | _b |
Undocumented |
Instance Variable | _g |
Undocumented |
Instance Variable | _r |
Undocumented |