Class: Geometry::Rectangle

Inherits:
Object
  • Object
show all
Defined in:
lib/geometry-mf.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(length, width) ⇒ Rectangle

Returns a new instance of Rectangle.



33
34
35
36
# File 'lib/geometry-mf.rb', line 33

def initialize(length, width)
  @length = length
  @width = width
end

Instance Attribute Details

#lengthObject

Returns the value of attribute length.



31
32
33
# File 'lib/geometry-mf.rb', line 31

def length
  @length
end

#widthObject

Returns the value of attribute width.



31
32
33
# File 'lib/geometry-mf.rb', line 31

def width
  @width
end

Instance Method Details

#areaObject



42
43
44
# File 'lib/geometry-mf.rb', line 42

def area
 @length * @width
end

#perimeterObject



38
39
40
# File 'lib/geometry-mf.rb', line 38

def perimeter
  @length + @length + @width + @width
end