Class: Origami::Graphics::Color::RGB

Inherits:
Object
  • Object
show all
Defined in:
lib/origami/graphics/colors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(r, g, b) ⇒ RGB

Returns a new instance of RGB.



92
93
94
# File 'lib/origami/graphics/colors.rb', line 92

def initialize(r,g,b)
    @r,@g,@b = r,g,b
end

Instance Attribute Details

#bObject

Returns the value of attribute b.



90
91
92
# File 'lib/origami/graphics/colors.rb', line 90

def b
  @b
end

#gObject

Returns the value of attribute g.



90
91
92
# File 'lib/origami/graphics/colors.rb', line 90

def g
  @g
end

#rObject

Returns the value of attribute r.



90
91
92
# File 'lib/origami/graphics/colors.rb', line 90

def r
  @r
end