shape ops work in progress
add quartic solution for intersecting quadratics
git-svn-id: http://skia.googlecode.com/svn/trunk@5541 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersections.cpp b/experimental/Intersection/Intersections.cpp
new file mode 100644
index 0000000..089a432
--- /dev/null
+++ b/experimental/Intersection/Intersections.cpp
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2012 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "DataTypes.h"
+#include "Intersections.h"
+
+void Intersections::cleanUp() {
+ assert(fCoincidentUsed);
+ assert(fUsed);
+ // find any entries in fT that could be part of the coincident range
+
+}