Loading...
Searching...
No Matches
RoutePath.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
3import java.util.ArrayList;
4
17public abstract class RoutePath {
33 public abstract RoutePath head(float advance);
34
50 public abstract RoutePath tail(float advance);
51
65 public abstract ArrayList<RouteNode> nodes();
66
80 public abstract float getLength();
81
95 public abstract float getWeight();
96}