aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-17 07:02:20 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-17 07:02:20 +0000
commite7707c2931577f732be48a9d50323f05711a8f14 (patch)
tree3a79ba07c339e3315d36bcfef69c937a582006ae /experimental
parent47d73daa7a971e7eee5822def7922f7d43b2dc47 (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@7759 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental')
-rw-r--r--experimental/Intersection/CubicIntersection.cpp2
-rw-r--r--experimental/Intersection/Intersections.h2
-rw-r--r--experimental/Intersection/QuadraticIntersection_Test.cpp1
3 files changed, 2 insertions, 3 deletions
diff --git a/experimental/Intersection/CubicIntersection.cpp b/experimental/Intersection/CubicIntersection.cpp
index 02a39d6d21..d92c8bfe14 100644
--- a/experimental/Intersection/CubicIntersection.cpp
+++ b/experimental/Intersection/CubicIntersection.cpp
@@ -448,7 +448,7 @@ bool intersect2(const Cubic& c1, const Cubic& c2, Intersections& i) {
}
const double CLOSE_ENOUGH = 0.001;
-
+
static bool closeStart(const Cubic& cubic, int cubicIndex, Intersections& i, _Point& pt) {
if (i.fT[cubicIndex][0] != 0 || i.fT[cubicIndex][1] > CLOSE_ENOUGH) {
return false;
diff --git a/experimental/Intersection/Intersections.h b/experimental/Intersection/Intersections.h
index 33fc0ac82a..9a35a7db89 100644
--- a/experimental/Intersection/Intersections.h
+++ b/experimental/Intersection/Intersections.h
@@ -80,7 +80,7 @@ public:
}
void removeOne(int index);
-
+
// leaves flip, swap alone
void reset() {
fUsed = 0;
diff --git a/experimental/Intersection/QuadraticIntersection_Test.cpp b/experimental/Intersection/QuadraticIntersection_Test.cpp
index 4b8f254bab..a9d5060349 100644
--- a/experimental/Intersection/QuadraticIntersection_Test.cpp
+++ b/experimental/Intersection/QuadraticIntersection_Test.cpp
@@ -388,4 +388,3 @@ void QuadraticIntersection_IntersectionFinder() {
SkDebugf("%s p2=(%1.9g,%1.9g)<(%1.9g,%1.9g)<(%1.9g,%1.9g)\n", __FUNCTION__,
p20.x, p20.y, p2Seed.x, p2Seed.y, p22.x, p22.y);
}
-