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.



100
101
102
# File 'lib/origami/graphics/colors.rb', line 100

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

Instance Attribute Details

#bObject

Returns the value of attribute b.



98
99
100
# File 'lib/origami/graphics/colors.rb', line 98

def b
  @b
end

#gObject

Returns the value of attribute g.



98
99
100
# File 'lib/origami/graphics/colors.rb', line 98

def g
  @g
end

#rObject

Returns the value of attribute r.



98
99
100
# File 'lib/origami/graphics/colors.rb', line 98

def r
  @r
end