Compare commits

..

No commits in common. "ce66d2162b0bd2ac8ef06b0e8c75b4b1cce8861f" and "2f68d40f576ab911a0b683b22f875f64fdcfad4d" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -214,11 +214,7 @@ public class Path {
*/
public float getLength() {
// TODO:
float length=0;
for (Arc arc : arcs) {
length += arc.getLength();
}
return length ;
return 0 ;
}
/**