Skip to content

Commit 00ef1ad

Browse files
committed
AbstractTriangle: insert 2 more spaces into the toString() result
1 parent b49e600 commit 00ef1ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jme3-core/src/main/java/com/jme3/math/AbstractTriangle.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ public int collideWith(Collidable other, CollisionResults results) {
8585
* example, a {@link com.jme3.math.Triangle} joining (1,0,0) and (0,1,0)
8686
* with (0,0,1) is represented by:
8787
* <pre>
88-
* Triangle [V1: (1.0, 0.0, 0.0) V2: (0.0, 1.0, 0.0) V3: (0.0, 0.0, 1.0)]
88+
* Triangle [V1: (1.0, 0.0, 0.0) V2: (0.0, 1.0, 0.0) V3: (0.0, 0.0, 1.0)]
8989
* </pre>
9090
*
9191
* @return the string representation (not null, not empty)
9292
*/
9393
@Override
9494
public String toString() {
95-
return getClass().getSimpleName() + " [V1: " + get1() + " V2: "
96-
+ get2() + " V3: " + get3() + "]";
95+
return getClass().getSimpleName() + " [V1: " + get1() + " V2: "
96+
+ get2() + " V3: " + get3() + "]";
9797
}
9898
}

0 commit comments

Comments
 (0)