class Graphit::Point

Attributes

x[RW]
y[RW]

Public Class Methods

new( x, y ) click to toggle source
# File lib/graphit/point.rb, line 6
def initialize( x, y )
  self.x = x.to_f
  self.y = y.to_f
end