class Point

Attributes

x[RW]
y[RW]

Public Class Methods

new(x, y) click to toggle source
# File lib/zarchitect/image.rb, line 157
def initialize(x, y)
  @x = x
  @y = y
end