aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Intersection
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/Intersection')
-rwxr-xr-xexperimental/Intersection/ActiveEdge_Test.cpp4
-rw-r--r--experimental/Intersection/ConvexHull.cpp1
-rw-r--r--experimental/Intersection/ConvexHull_Test.cpp3
-rw-r--r--experimental/Intersection/CubicParameterization.cpp2
-rwxr-xr-xexperimental/Intersection/EdgeWalkerPolygon4x4_Test.cpp1
-rw-r--r--experimental/Intersection/EdgeWalkerPolygons_Test.cpp1
-rw-r--r--experimental/Intersection/EdgeWalkerRectangles_Test.cpp1
-rw-r--r--experimental/Intersection/LineUtilities.h1
-rw-r--r--experimental/Intersection/Simplify.h1
-rw-r--r--experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp1
-rw-r--r--experimental/Intersection/SimplifyRect4x4_Test.cpp1
-rw-r--r--experimental/Intersection/SkAntiEdge.cpp1
12 files changed, 0 insertions, 18 deletions
diff --git a/experimental/Intersection/ActiveEdge_Test.cpp b/experimental/Intersection/ActiveEdge_Test.cpp
index 1ac340e4e0..1c82f1cb69 100755
--- a/experimental/Intersection/ActiveEdge_Test.cpp
+++ b/experimental/Intersection/ActiveEdge_Test.cpp
@@ -81,7 +81,3 @@ void ActiveEdge_Test() {
SkASSERT(!operator_less_than(right, left));
}
}
-
-
-
-
diff --git a/experimental/Intersection/ConvexHull.cpp b/experimental/Intersection/ConvexHull.cpp
index ad932e3550..e9a08c299a 100644
--- a/experimental/Intersection/ConvexHull.cpp
+++ b/experimental/Intersection/ConvexHull.cpp
@@ -141,4 +141,3 @@ bool convex_x_hull(const Cubic& cubic, char connectTo0[2], char connectTo3[2]) {
return (1 << lower0Index | 1 << upper0Index
| 1 << lower3Index | 1 << upper3Index) == 0x0F;
}
-
diff --git a/experimental/Intersection/ConvexHull_Test.cpp b/experimental/Intersection/ConvexHull_Test.cpp
index bd83840dda..3e53b17f52 100644
--- a/experimental/Intersection/ConvexHull_Test.cpp
+++ b/experimental/Intersection/ConvexHull_Test.cpp
@@ -466,6 +466,3 @@ nextTest:
;
}
}
-
-
-
diff --git a/experimental/Intersection/CubicParameterization.cpp b/experimental/Intersection/CubicParameterization.cpp
index e44b121ddb..caa7c24dd8 100644
--- a/experimental/Intersection/CubicParameterization.cpp
+++ b/experimental/Intersection/CubicParameterization.cpp
@@ -516,5 +516,3 @@ void tangent(const Cubic& cubic, double t, _Point& result) {
// unit test to return and validate parametric coefficients
#include "CubicParameterization_TestUtility.cpp"
-
-
diff --git a/experimental/Intersection/EdgeWalkerPolygon4x4_Test.cpp b/experimental/Intersection/EdgeWalkerPolygon4x4_Test.cpp
index 44e6b9da3c..9a5c1d01e3 100755
--- a/experimental/Intersection/EdgeWalkerPolygon4x4_Test.cpp
+++ b/experimental/Intersection/EdgeWalkerPolygon4x4_Test.cpp
@@ -288,4 +288,3 @@ void SimplifyDegenerate4x4TrianglesThreaded_Test(int& testsRun) {
testsRun += waitForCompletion();
SkDebugf("%s tests=%d total=%d\n", __FUNCTION__, testsRun - testsStart, testsRun);
}
-
diff --git a/experimental/Intersection/EdgeWalkerPolygons_Test.cpp b/experimental/Intersection/EdgeWalkerPolygons_Test.cpp
index 5c7f2500b0..8cda8e6b56 100644
--- a/experimental/Intersection/EdgeWalkerPolygons_Test.cpp
+++ b/experimental/Intersection/EdgeWalkerPolygons_Test.cpp
@@ -788,4 +788,3 @@ void SimplifyPolygonPaths_Test() {
firstTestComplete = true;
}
}
-
diff --git a/experimental/Intersection/EdgeWalkerRectangles_Test.cpp b/experimental/Intersection/EdgeWalkerRectangles_Test.cpp
index 31edd74d21..5f1b7f876b 100644
--- a/experimental/Intersection/EdgeWalkerRectangles_Test.cpp
+++ b/experimental/Intersection/EdgeWalkerRectangles_Test.cpp
@@ -467,4 +467,3 @@ void SimplifyRectangularPaths_Test() {
(*simplifyTests[index])();
}
}
-
diff --git a/experimental/Intersection/LineUtilities.h b/experimental/Intersection/LineUtilities.h
index 498b925581..9d538122c0 100644
--- a/experimental/Intersection/LineUtilities.h
+++ b/experimental/Intersection/LineUtilities.h
@@ -21,4 +21,3 @@ enum x_at_flags {
void x_at(const _Point& p1, const _Point& p2, double minY, double maxY,
int flags, double& tMin, double& tMax);
-
diff --git a/experimental/Intersection/Simplify.h b/experimental/Intersection/Simplify.h
index a0b936abf0..111daf0365 100644
--- a/experimental/Intersection/Simplify.h
+++ b/experimental/Intersection/Simplify.h
@@ -16,4 +16,3 @@
#include "ShapeOps.h"
#include "TSearch.h"
#include <algorithm> // used for std::min
-
diff --git a/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp b/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
index ca96ea68df..89046a86b1 100644
--- a/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
+++ b/experimental/Intersection/SimplifyAddIntersectingTs_Test.cpp
@@ -133,4 +133,3 @@ void SimplifyAddIntersectingTs_Test() {
}
}
}
-
diff --git a/experimental/Intersection/SimplifyRect4x4_Test.cpp b/experimental/Intersection/SimplifyRect4x4_Test.cpp
index add48d8df8..caa4597e20 100644
--- a/experimental/Intersection/SimplifyRect4x4_Test.cpp
+++ b/experimental/Intersection/SimplifyRect4x4_Test.cpp
@@ -198,4 +198,3 @@ void Simplify4x4RectsThreaded_Test(int& testsRun)
testsRun += waitForCompletion();
SkDebugf("%s tests=%d total=%d\n", __FUNCTION__, testsRun - testsStart, testsRun);
}
-
diff --git a/experimental/Intersection/SkAntiEdge.cpp b/experimental/Intersection/SkAntiEdge.cpp
index 41887fe3c1..9a61aa461c 100644
--- a/experimental/Intersection/SkAntiEdge.cpp
+++ b/experimental/Intersection/SkAntiEdge.cpp
@@ -1079,4 +1079,3 @@ void SkAntiEdge_Test() {
test_horz();
test_vert();
}
-