aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/graph/geom/AABBox.java
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-03-31 17:48:15 +0300
committerRami Santina <[email protected]>2011-03-31 17:48:15 +0300
commit1c1a7d7ad51ea2041a5a121f034d4d748827b16c (patch)
tree1a9c0d8adb0f27e971edf9367948481f291a621c /src/com/jogamp/graph/geom/AABBox.java
parentc604c520c174ae5f54931743cd9138c66fcefc9b (diff)
Fix: Outline over triangulation.
With triangualtion exluding outter boundary triangles not all hole vertices will be inside the boundary (float issues). Workaround, check for all vertices, need a better solution and should sync with Java Fonts.
Diffstat (limited to 'src/com/jogamp/graph/geom/AABBox.java')
-rw-r--r--src/com/jogamp/graph/geom/AABBox.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/com/jogamp/graph/geom/AABBox.java b/src/com/jogamp/graph/geom/AABBox.java
index f97c43a57..8cd06329e 100644
--- a/src/com/jogamp/graph/geom/AABBox.java
+++ b/src/com/jogamp/graph/geom/AABBox.java
@@ -40,12 +40,13 @@ public class AABBox {
private float[] high = {-1*Float.MAX_VALUE,-1*Float.MAX_VALUE,-1*Float.MAX_VALUE};
private float[] center = new float[3];
- /** Create a Axis Aligned bounding box (AABBox) where the low and and high MAX float Values.
+ /** Create a Axis Aligned bounding box (AABBox)
+ * where the low and and high MAX float Values.
*/
public AABBox() {}
- /** Create an AABBox specifying the coordinates of the low and high
- *
+ /** Create an AABBox specifying the coordinates
+ * of the low and high
* @param lx min x-coordinate
* @param ly min y-coordnate
* @param lz min z-coordinate