Class: Geometry::Rectangle
- Inherits:
-
Object
- Object
- Geometry::Rectangle
- Defined in:
- lib/geometry-befr.rb
Instance Attribute Summary collapse
-
#length ⇒ Object
Returns the value of attribute length.
-
#width ⇒ Object
Returns the value of attribute width.
Instance Method Summary collapse
- #area ⇒ Object
-
#initialize(length, width) ⇒ Rectangle
constructor
A new instance of Rectangle.
- #perimeter ⇒ Object
Constructor Details
#initialize(length, width) ⇒ Rectangle
Returns a new instance of Rectangle.
61 62 63 64 |
# File 'lib/geometry-befr.rb', line 61 def initialize(length, width) @length = length @width = width end |
Instance Attribute Details
#length ⇒ Object
Returns the value of attribute length.
59 60 61 |
# File 'lib/geometry-befr.rb', line 59 def length @length end |
#width ⇒ Object
Returns the value of attribute width.
59 60 61 |
# File 'lib/geometry-befr.rb', line 59 def width @width end |
Instance Method Details
#area ⇒ Object
66 67 68 |
# File 'lib/geometry-befr.rb', line 66 def area @length * @width end |
#perimeter ⇒ Object
70 71 72 |
# File 'lib/geometry-befr.rb', line 70 def perimeter (@length * 2) + (@width * 2) end |