shape ops work in progress

git-svn-id: http://skia.googlecode.com/svn/trunk@4006 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/ActiveEdge_Test.cpp b/experimental/Intersection/ActiveEdge_Test.cpp
index 03cb595..3e1b958 100755
--- a/experimental/Intersection/ActiveEdge_Test.cpp
+++ b/experimental/Intersection/ActiveEdge_Test.cpp
@@ -25,24 +25,24 @@
     {{10,  0}, {10, 50},   {20, 10}, {20, 50}},
     {{10,  0}, {10, 50},   {10, 10}, {20, 50}},
     {{10,  0}, {10, 50},   {20, 10}, {10, 50}},
-    {{10,  0}, {10, 50},   {20, 10}, {10 + 0.000001, 40}},
+    {{10,  0}, {10, 50},   {20, 10}, {10 + 0.000001f, 40}},
 // left top lower
     {{10, 20}, {10, 50},   {20, 10}, {20, 50}},
     {{10, 20}, {10, 50},   {10, 10}, {20, 50}},
     {{10, 20}, {10, 50},   {20, 10}, {10, 50}},
-    {{10, 20}, {10, 50},   {20, 10}, {10 + 0.000001, 40}},
+    {{10, 20}, {10, 50},   {20, 10}, {10 + 0.000001f, 40}},
     {{10, 20}, {10, 50},   { 0,  0}, {50, 50}},
 // left bottom higher
     {{10, 10}, {10, 40},   {20, 10}, {20, 50}},
     {{10, 10}, {10, 40},   {10, 10}, {20, 50}},
     {{10, 10}, {10, 40},   {20, 10}, {10, 50}},
-    {{10, 10}, {10, 40},   {20, 10}, { 0 + 0.000001, 70}},
+    {{10, 10}, {10, 40},   {20, 10}, { 0 + 0.000001f, 70}},
 // left bottom lower
     {{10, 10}, {10, 60},   {20, 10}, {20, 50}},
     {{10, 10}, {10, 60},   {10, 10}, {20, 50}},
-    {{10, 10}, {10, 60},   {20, 10}, {10 + 0.000001, 50}},
-    {{10, 10}, {10, 60},   {20, 10}, {10 + 0.000001, 40}},
-    {{10, 10}, {10, 60},   { 0,  0}, {20 + 0.000001, 20}},
+    {{10, 10}, {10, 60},   {20, 10}, {10 + 0.000001f, 50}},
+    {{10, 10}, {10, 60},   {20, 10}, {10 + 0.000001f, 40}},
+    {{10, 10}, {10, 60},   { 0,  0}, {20 + 0.000001f, 20}},
 };
 
 size_t leftRightCount = sizeof(leftRight) / sizeof(leftRight[0]);