shape ops work in progress

Try to fix the 32 bit build by making some math
decisions more robust.

Rewrite the cubic intersection special case that 
detects if only end points are shared.

Rewrite the angle sort setup that computes whether
a cubic bends to the left or right.

git-svn-id: http://skia.googlecode.com/svn/trunk@8726 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PathOpsQuadIntersectionTest.cpp b/tests/PathOpsQuadIntersectionTest.cpp
index 8555563..4276051 100644
--- a/tests/PathOpsQuadIntersectionTest.cpp
+++ b/tests/PathOpsQuadIntersectionTest.cpp
@@ -252,8 +252,7 @@
 }
 
 static void QuadraticIntersection_OneOffTest(skiatest::Reporter* reporter) {
-    oneOffTest1(reporter, 0, 1);
-    oneOffTest1(reporter, 1, 0);
+    oneOffTest1(reporter, 43, 47);
 }
 
 static void oneOffTests(skiatest::Reporter* reporter) {
@@ -465,3 +464,4 @@
 
 #include "TestClassDef.h"
 DEFINE_TESTCLASS_SHORT(PathOpsQuadIntersectionTest)
+DEFINE_TESTCLASS_SHORT(QuadraticIntersection_OneOffTest)