aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/graph
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/jogamp/graph')
-rw-r--r--src/com/jogamp/graph/curve/tess/CDTriangulator2D.java13
-rw-r--r--src/com/jogamp/graph/geom/AABBox.java7
2 files changed, 11 insertions, 9 deletions
diff --git a/src/com/jogamp/graph/curve/tess/CDTriangulator2D.java b/src/com/jogamp/graph/curve/tess/CDTriangulator2D.java
index beef2d4a5..cc2478409 100644
--- a/src/com/jogamp/graph/curve/tess/CDTriangulator2D.java
+++ b/src/com/jogamp/graph/curve/tess/CDTriangulator2D.java
@@ -203,13 +203,14 @@ public class CDTriangulator2D {
}
private Loop getContainerLoop(Outline polyline){
- Vertex v = polyline.getVertex(0);
-
- for (Loop loop:loops){
- if(loop.checkInside(v)){
- return loop;
+ ArrayList<Vertex> vertices = polyline.getVertices();
+ for(Vertex vert: vertices){
+ for (Loop loop:loops){
+ if(loop.checkInside(vert)){
+ return loop;
+ }
}
- }
+ }
return null;
}
}
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