class Olympic::Coordinate::Basic

Public Class Methods

new(x, y, z) click to toggle source

Initializes the coordinate.

@param x [Numeric] @param y [Numeric] @param z [Numeric]

# File lib/olympic/coordinate/standard.rb, line 10
def initialize(x, y, z)
  @x = x
  @y = y
  @z = z
end