class ProceduralShape::Rectangle

Attributes

height[RW]
width[RW]

Public Class Methods

new(height,width) click to toggle source
# File lib/shape/procedural_shape/rectangle.rb, line 4
def initialize(height,width)
  @height = height
  @width = width
end