X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fedu%2Fberkeley%2Fqfat%2Fgeom%2FPolygon.java;h=b69c3d743b731c467d534948d3af8da2697b0b05;hb=8084a784db5cd0f688d230ab9624ab6966265f39;hp=2afa144596a2f60f9a4307bc0ca4939b97ba172f;hpb=de2400d58116bd995e73baf7a429e22def1e4067;p=anneal.git diff --git a/src/edu/berkeley/qfat/geom/Polygon.java b/src/edu/berkeley/qfat/geom/Polygon.java index 2afa144..b69c3d7 100644 --- a/src/edu/berkeley/qfat/geom/Polygon.java +++ b/src/edu/berkeley/qfat/geom/Polygon.java @@ -65,10 +65,10 @@ public final class Polygon { //centroid = new Point(round(centroid.x), round(centroid.y), round(centroid.z)); if (segments.size() >= 3) for(Segment s : segments) { - System.out.println("newt! " + s.p1 + " " + centroid + " " + s.p2 + " " + plane.norm.times(-1)); - mesh.newT(s.p1, centroid, s.p2, plane.norm.times(-1), 0); + //System.out.println("newt! " + s.p1 + " " + centroid + " " + s.p2 + " " + plane.norm().times(-1)); + mesh.newT(s.p1, centroid, s.p2, plane.norm().times(-1), 0); } - System.out.println("done"); + //System.out.println("done"); return null; }