shape ops work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@7031 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/LineCubicIntersection.cpp b/experimental/Intersection/LineCubicIntersection.cpp
index 3111ddd..91a0b7d 100644
--- a/experimental/Intersection/LineCubicIntersection.cpp
+++ b/experimental/Intersection/LineCubicIntersection.cpp
@@ -224,7 +224,7 @@
 int intersect(const Cubic& cubic, const _Line& line, double cRange[3], double lRange[3]) {
     LineCubicIntersections c(cubic, line, cRange);
     int roots;
-    if (approximately_equal(line[0].y, line[1].y)) {
+    if (AlmostEqualUlps(line[0].y, line[1].y)) {
         roots = c.horizontalIntersect(line[0].y);
     } else {
         roots = c.intersect();