diff options
author | Sven Gothel <[email protected]> | 2011-05-10 23:38:40 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-05-10 23:38:40 +0200 |
commit | 9ceff75afcbf6c446e75c1be6b4be1e62d543f3a (patch) | |
tree | 57d2d608b2705953ab37c6e3ccd1bff22ec7d621 /src/jogl/classes/jogamp/graph/curve/tess/Loop.java | |
parent | 192631530503b8046abcfa9b2ca6760e3f39ae66 (diff) |
Graph/Loop: More readable/verbose invert case; using Winding enum; ttf reader: Adding debug dump of font direction hint
Diffstat (limited to 'src/jogl/classes/jogamp/graph/curve/tess/Loop.java')
-rw-r--r-- | src/jogl/classes/jogamp/graph/curve/tess/Loop.java | 46 |
1 files changed, 25 insertions, 21 deletions
diff --git a/src/jogl/classes/jogamp/graph/curve/tess/Loop.java b/src/jogl/classes/jogamp/graph/curve/tess/Loop.java index 956fd56f2..230bdad0e 100644 --- a/src/jogl/classes/jogamp/graph/curve/tess/Loop.java +++ b/src/jogl/classes/jogamp/graph/curve/tess/Loop.java @@ -40,9 +40,9 @@ public class Loop { private AABBox box = new AABBox(); private GraphOutline initialOutline = null; - public Loop(GraphOutline polyline, int direction){ + public Loop(GraphOutline polyline, VectorUtil.Winding winding){ initialOutline = polyline; - this.root = initFromPolyline(initialOutline, direction); + this.root = initFromPolyline(initialOutline, winding); } public HEdge getHEdge(){ @@ -94,34 +94,37 @@ public class Loop { /**Create a connected list of half edges (loop) * from the boundary profile - * @param direction requested winding of edges (CCW or CW) + * @param reqWinding requested winding of edges (CCW or CW) */ - private HEdge initFromPolyline(GraphOutline outline, int direction){ + private HEdge initFromPolyline(GraphOutline outline, VectorUtil.Winding reqWinding){ ArrayList<GraphVertex> vertices = outline.getGraphPoint(); if(vertices.size()<3) { throw new IllegalArgumentException("outline's vertices < 3: " + vertices.size()); } - boolean isCCW = VectorUtil.ccw(vertices.get(0).getPoint(), vertices.get(1).getPoint(), - vertices.get(2).getPoint()); - boolean invert = isCCW && (direction == VectorUtil.CW); - - final int dir; + final VectorUtil.Winding hasWinding = VectorUtil.getWinding( + vertices.get(0).getPoint(), + vertices.get(1).getPoint(), + vertices.get(2).getPoint()); + // isCCW && (reqWinding == VectorUtil.CW); + // skips inversion CW -> CCW ? + final boolean invert = hasWinding != reqWinding && + reqWinding == VectorUtil.Winding.CW; + /*if( hasWinding != reqWinding ) { + System.err.println("Winding: i "+invert+" "+hasWinding+" -> "+reqWinding); + }*/ + final int max; - final int edgeType; + final int edgeType = reqWinding == VectorUtil.Winding.CCW ? HEdge.BOUNDARY : HEdge.HOLE ; int index; HEdge firstEdge = null; HEdge lastEdge = null; if(!invert) { - dir = 1; max = vertices.size(); - edgeType = HEdge.BOUNDARY; index = 0; } else { - dir = -1; max = -1; - edgeType = HEdge.HOLE; index = vertices.size() -1; } @@ -144,14 +147,15 @@ public class Loop { edge.setNext(firstEdge); firstEdge.setPrev(edge); } - } else if (index == 0) { - edge.setNext(firstEdge); - firstEdge.setPrev(edge); + index++; + } else { + if (index == 0) { + edge.setNext(firstEdge); + firstEdge.setPrev(edge); + } + index--; } - lastEdge = edge; - - index += dir; } return firstEdge; } @@ -159,7 +163,7 @@ public class Loop { public void addConstraintCurve(GraphOutline polyline) { // GraphOutline outline = new GraphOutline(polyline); /**needed to generate vertex references.*/ - initFromPolyline(polyline, VectorUtil.CW); + initFromPolyline(polyline, VectorUtil.Winding.CW); GraphVertex v3 = locateClosestVertex(polyline); HEdge v3Edge = v3.findBoundEdge(); |