Getlength
Questo commit è contenuto in:
parent
bbf82ecfac
commit
8ab68ac6e7
2 ha cambiato i file con 6 aggiunte e 4 eliminazioni
|
@ -210,11 +210,13 @@ public class Path {
|
|||
*
|
||||
* @return Total length of the path (in meters).
|
||||
*
|
||||
* @deprecated Need to be implemented.
|
||||
*/
|
||||
public float getLength() {
|
||||
// TODO:
|
||||
return 0;
|
||||
float longeur=0;
|
||||
for (int i=0;i<this.arcs.size();i++) {
|
||||
longeur+=this.arcs.get(i).getLength();
|
||||
}
|
||||
return longeur;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -12,7 +12,7 @@
|
|||
<name>be-graphes-all</name>
|
||||
|
||||
<properties>
|
||||
<jdk.version>1.8</jdk.version>
|
||||
<jdk.version>1.11</jdk.version>
|
||||
<maven.compiler.source>${jdk.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${jdk.version}</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
|
Caricamento…
Crea riferimento in una nuova segnalazione