Class: Graphit::Point
- Inherits:
-
Object
- Object
- Graphit::Point
- Defined in:
- lib/graphit/point.rb
Instance Attribute Summary collapse
-
#x ⇒ Object
Returns the value of attribute x.
-
#y ⇒ Object
Returns the value of attribute y.
Instance Method Summary collapse
-
#initialize(x, y) ⇒ Point
constructor
A new instance of Point.
Constructor Details
#initialize(x, y) ⇒ Point
Returns a new instance of Point.
6 7 8 9 |
# File 'lib/graphit/point.rb', line 6 def initialize( x, y ) self.x = x.to_f self.y = y.to_f end |
Instance Attribute Details
#x ⇒ Object
Returns the value of attribute x.
3 4 5 |
# File 'lib/graphit/point.rb', line 3 def x @x end |
#y ⇒ Object
Returns the value of attribute y.
4 5 6 |
# File 'lib/graphit/point.rb', line 4 def y @y end |