class Sungemm::Point
Attributes
x[RW]
y[RW]
Public Class Methods
new(x, y)
click to toggle source
# File lib/sungemm/point.rb, line 5 def initialize(x, y) self.x, self.y = x, y end