Class: Origami::Graphics::Color::RGB
- Inherits:
-
Object
- Object
- Origami::Graphics::Color::RGB
- Defined in:
- lib/origami/graphics/colors.rb
Instance Attribute Summary collapse
-
#b ⇒ Object
Returns the value of attribute b.
-
#g ⇒ Object
Returns the value of attribute g.
-
#r ⇒ Object
Returns the value of attribute r.
Instance Method Summary collapse
-
#initialize(r, g, b) ⇒ RGB
constructor
A new instance of RGB.
Constructor Details
#initialize(r, g, b) ⇒ RGB
Returns a new instance of RGB.
89 90 91 |
# File 'lib/origami/graphics/colors.rb', line 89 def initialize(r, g, b) @r, @g, @b = r, g, b end |
Instance Attribute Details
#b ⇒ Object
Returns the value of attribute b.
87 88 89 |
# File 'lib/origami/graphics/colors.rb', line 87 def b @b end |
#g ⇒ Object
Returns the value of attribute g.
87 88 89 |
# File 'lib/origami/graphics/colors.rb', line 87 def g @g end |
#r ⇒ Object
Returns the value of attribute r.
87 88 89 |
# File 'lib/origami/graphics/colors.rb', line 87 def r @r end |