checkpoint
[anneal.git] / src / edu / berkeley / qfat / geom / Plane.java
index 36f18a3..ed721ed 100644 (file)
@@ -52,7 +52,7 @@ public class Plane implements AffineConstraint {
 
             // parallel planes
             if (Math.abs(p.norm().cross(norm()).mag()) <= epsilon)
-                return new AffineConstraint.Nothing();
+                return AffineConstraint.NONE;
 
             Vec u = norm().cross(p.norm());
             Point point = null;