class LessCurse::Geometry::Point

Attributes

x[RW]
y[RW]

Public Class Methods

new(x, y) click to toggle source
# File lib/less_curse/geometry.rb, line 5
def initialize(x, y)
  @x, @y = x, y
end