1
0
Fork 0

Compare commits

..

No commits in common. "472b57869210c34709ec726e321f70ace6984f63" and "941ff07d893b6713abe85fdb8403b36b0e84a2fc" have entirely different histories.

2 changed files with 3 additions and 6 deletions

1
.gitignore vendored
View file

@ -19,4 +19,3 @@ doc
*.mapgr
*.path
*.tgz
/.metadata/

View file

@ -195,13 +195,11 @@ public class Path {
* Compute the length of this path (in meters).
*
* @return Total length of the path (in meters).
* @deprecated Need to be implemented.
*/
public float getLength() {
float result = 0f;
for (Arc arc : arcs) {
result += arc.getLength();
}
return result;
// TODO:
return 0;
}
/**