aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-11-11 22:06:40 +0100
committerSven Gothel <[email protected]>2012-11-11 22:06:40 +0100
commit26bdab54bdf877ea4d9fd8f42317889279706926 (patch)
treecac6adcc336f8ad2492f626beb94a8cde2d96177 /src/jogl
parent263452439c10540776545c12255bf3b75c7fbd2b (diff)
Frustum: Print Plane's normals properly in toString()
Diffstat (limited to 'src/jogl')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/math/geom/Frustum.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/geom/Frustum.java b/src/jogl/classes/com/jogamp/opengl/math/geom/Frustum.java
index 1ebf8ce9f..389c23140 100644
--- a/src/jogl/classes/com/jogamp/opengl/math/geom/Frustum.java
+++ b/src/jogl/classes/com/jogamp/opengl/math/geom/Frustum.java
@@ -73,7 +73,7 @@ public class Frustum {
@Override
public String toString() {
- return "Plane[ " + n + ", " + d + "]";
+ return "Plane[ [ " + n[0] + ", " + n[1] + ", " + n[2] + " ], " + d + "]";
}
}