class Object
Public Instance Methods
node(x, y, index, cost, heuristic, totalCost)
click to toggle source
# File lib/A_Star.rb, line 35 def node x, y, index, cost, heuristic, totalCost return [x, y, index, cost, heuristic, totalCost] end