(a: IPoint, b: IPoint)
| 320 | } |
| 321 | |
| 322 | heuristic(a: IPoint, b: IPoint): number { |
| 323 | return euclideanDistance(a, b); |
| 324 | } |
| 325 | |
| 326 | getMovementCost(from: IPathNode, to: IPathNode): number { |
| 327 | return euclideanDistance(from.position, to.position); |
nothing calls this directly
no test coverage detected