class Gingham::Position

Attributes

x[RW]
y[RW]
z[RW]

Public Class Methods

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