class Robot::Simulator::Coordinate

Coordinate on the table, starting from (0, 0) on south west corner.

Attributes

x[R]
y[R]

Public Class Methods

new(x, y) click to toggle source
# File lib/robot/simulator/coordinate.rb, line 7
def initialize(x, y)
  @x, @y = x, y
end