Class: Ruby2D::Square

Inherits:
Rectangle show all
Defined in:
lib/ruby2d/square.rb

Instance Attribute Summary collapse

Attributes inherited from Rectangle

#height, #width, #x, #y

Attributes inherited from Quad

#c1, #c2, #c3, #c4, #color, #x1, #x2, #x3, #x4, #y1, #y2, #y3, #y4

Attributes included from Renderable

#z

Instance Method Summary collapse

Methods inherited from Rectangle

#contains?

Methods inherited from Quad

#contains?, #ext_render

Methods included from Renderable

#add, #contains?, #opacity, #opacity=, #remove

Constructor Details

#initialize(opts = {}) ⇒ Square

Returns a new instance of Square.



8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/ruby2d/square.rb', line 8

def initialize(opts = {})
  @x = opts[:x] || 0
  @y = opts[:y] || 0
  @z = opts[:z] || 0
  @width = @height = @size = opts[:size] || 100

  self.color = opts[:color] || 'white'

  update_coords(@x, @y, @size, @size)

  add
end

Instance Attribute Details

#sizeObject

Returns the value of attribute size.



6
7
8
# File 'lib/ruby2d/square.rb', line 6

def size
  @size
end