caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkPathOpsCubic_DEFINED |
| 9 | #define SkPathOpsCubic_DEFINED |
| 10 | |
caryclark@google.com | cffbcc3 | 2013-06-04 17:59:42 +0000 | [diff] [blame] | 11 | #include "SkPath.h" |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 12 | #include "SkPathOpsPoint.h" |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 13 | |
| 14 | struct SkDCubicPair { |
| 15 | const SkDCubic& first() const { return (const SkDCubic&) pts[0]; } |
| 16 | const SkDCubic& second() const { return (const SkDCubic&) pts[3]; } |
| 17 | SkDPoint pts[7]; |
| 18 | }; |
| 19 | |
| 20 | struct SkDCubic { |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 21 | static const int kPointCount = 4; |
| 22 | static const int kPointLast = kPointCount - 1; |
| 23 | static const int kMaxIntersections = 9; |
| 24 | |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 25 | enum SearchAxis { |
| 26 | kXAxis, |
| 27 | kYAxis |
| 28 | }; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 29 | |
caryclark | 03b03ca | 2015-04-23 09:13:37 -0700 | [diff] [blame] | 30 | enum CubicType { |
| 31 | kUnsplit_SkDCubicType, |
| 32 | kSplitAtLoop_SkDCubicType, |
| 33 | kSplitAtInflection_SkDCubicType, |
| 34 | kSplitAtMaxCurvature_SkDCubicType, |
| 35 | }; |
| 36 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 37 | bool collapsed() const { |
| 38 | return fPts[0].approximatelyEqual(fPts[1]) && fPts[0].approximatelyEqual(fPts[2]) |
| 39 | && fPts[0].approximatelyEqual(fPts[3]); |
| 40 | } |
| 41 | |
| 42 | bool controlsInside() const { |
| 43 | SkDVector v01 = fPts[0] - fPts[1]; |
| 44 | SkDVector v02 = fPts[0] - fPts[2]; |
| 45 | SkDVector v03 = fPts[0] - fPts[3]; |
| 46 | SkDVector v13 = fPts[1] - fPts[3]; |
| 47 | SkDVector v23 = fPts[2] - fPts[3]; |
| 48 | return v03.dot(v01) > 0 && v03.dot(v02) > 0 && v03.dot(v13) > 0 && v03.dot(v23) > 0; |
| 49 | } |
| 50 | |
| 51 | static bool IsCubic() { return true; } |
| 52 | |
| 53 | const SkDPoint& operator[](int n) const { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; } |
| 54 | SkDPoint& operator[](int n) { SkASSERT(n >= 0 && n < kPointCount); return fPts[n]; } |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 55 | |
skia.committer@gmail.com | 8f6ef40 | 2013-06-05 07:01:06 +0000 | [diff] [blame] | 56 | void align(int endIndex, int ctrlIndex, SkDPoint* dstPt) const; |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 57 | double binarySearch(double min, double max, double axisIntercept, SearchAxis xAxis) const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 58 | double calcPrecision() const; |
| 59 | SkDCubicPair chopAt(double t) const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 60 | static void Coefficients(const double* cubic, double* A, double* B, double* C, double* D); |
caryclark | 03b03ca | 2015-04-23 09:13:37 -0700 | [diff] [blame] | 61 | static bool ComplexBreak(const SkPoint pts[4], SkScalar* t, CubicType* cubicType); |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 62 | int convexHull(char order[kPointCount]) const; |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 63 | |
| 64 | void debugInit() { |
| 65 | sk_bzero(fPts, sizeof(fPts)); |
| 66 | } |
| 67 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 68 | void dump() const; // callable from the debugger when the implementation code is linked in |
| 69 | void dumpID(int id) const; |
| 70 | void dumpInner() const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 71 | SkDVector dxdyAtT(double t) const; |
| 72 | bool endsAreExtremaInXOrY() const; |
caryclark | aec2510 | 2015-04-29 08:28:30 -0700 | [diff] [blame] | 73 | static int FindExtrema(const double src[], double tValue[2]); |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 74 | int findInflections(double tValues[2]) const; |
caryclark@google.com | b3f0921 | 2013-04-17 15:49:16 +0000 | [diff] [blame] | 75 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 76 | static int FindInflections(const SkPoint a[kPointCount], double tValues[2]) { |
caryclark@google.com | b3f0921 | 2013-04-17 15:49:16 +0000 | [diff] [blame] | 77 | SkDCubic cubic; |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame^] | 78 | return cubic.set(a).findInflections(tValues); |
caryclark@google.com | b3f0921 | 2013-04-17 15:49:16 +0000 | [diff] [blame] | 79 | } |
| 80 | |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 81 | int findMaxCurvature(double tValues[]) const; |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 82 | bool hullIntersects(const SkDCubic& c2, bool* isLinear) const; |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 83 | bool hullIntersects(const SkDConic& c, bool* isLinear) const; |
| 84 | bool hullIntersects(const SkDQuad& c2, bool* isLinear) const; |
| 85 | bool hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 86 | bool isLinear(int startIndex, int endIndex) const; |
caryclark | aec2510 | 2015-04-29 08:28:30 -0700 | [diff] [blame] | 87 | bool monotonicInX() const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 88 | bool monotonicInY() const; |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 89 | void otherPts(int index, const SkDPoint* o1Pts[kPointCount - 1]) const; |
caryclark@google.com | 4fdbb22 | 2013-07-23 15:27:41 +0000 | [diff] [blame] | 90 | SkDPoint ptAtT(double t) const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 91 | static int RootsReal(double A, double B, double C, double D, double t[3]); |
| 92 | static int RootsValidT(const double A, const double B, const double C, double D, double s[3]); |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 93 | |
| 94 | int searchRoots(double extremes[6], int extrema, double axisIntercept, |
| 95 | SearchAxis xAxis, double* validRoots) const; |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 96 | |
reed | dc30885 | 2015-04-30 07:47:13 -0700 | [diff] [blame] | 97 | /** |
| 98 | * Return the number of valid roots (0 < root < 1) for this cubic intersecting the |
| 99 | * specified horizontal line. |
| 100 | */ |
| 101 | int horizontalIntersect(double yIntercept, double roots[3]) const; |
| 102 | /** |
| 103 | * Return the number of valid roots (0 < root < 1) for this cubic intersecting the |
| 104 | * specified vertical line. |
| 105 | */ |
| 106 | int verticalIntersect(double xIntercept, double roots[3]) const; |
| 107 | |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 108 | const SkDCubic& set(const SkPoint pts[kPointCount]) { |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 109 | fPts[0] = pts[0]; |
| 110 | fPts[1] = pts[1]; |
| 111 | fPts[2] = pts[2]; |
| 112 | fPts[3] = pts[3]; |
caryclark | 1049f12 | 2015-04-20 08:31:59 -0700 | [diff] [blame] | 113 | return *this; |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 114 | } |
| 115 | |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 116 | SkDCubic subDivide(double t1, double t2) const; |
caryclark@google.com | b3f0921 | 2013-04-17 15:49:16 +0000 | [diff] [blame] | 117 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 118 | static SkDCubic SubDivide(const SkPoint a[kPointCount], double t1, double t2) { |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 119 | SkDCubic cubic; |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame^] | 120 | return cubic.set(a).subDivide(t1, t2); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 121 | } |
caryclark@google.com | b3f0921 | 2013-04-17 15:49:16 +0000 | [diff] [blame] | 122 | |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 123 | void subDivide(const SkDPoint& a, const SkDPoint& d, double t1, double t2, SkDPoint p[2]) const; |
| 124 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 125 | static void SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& d, double t1, |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 126 | double t2, SkDPoint p[2]) { |
| 127 | SkDCubic cubic; |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame^] | 128 | cubic.set(pts).subDivide(a, d, t1, t2, p); |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 129 | } |
| 130 | |
caryclark | 624637c | 2015-05-11 07:21:27 -0700 | [diff] [blame^] | 131 | double top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 132 | SkDQuad toQuad() const; |
caryclark@google.com | 570863f | 2013-09-16 15:55:01 +0000 | [diff] [blame] | 133 | |
commit-bot@chromium.org | 2db7fe7 | 2014-05-07 15:31:40 +0000 | [diff] [blame] | 134 | static const int gPrecisionUnit; |
| 135 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 136 | SkDPoint fPts[kPointCount]; |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 137 | }; |
| 138 | |
caryclark | 5435929 | 2015-03-26 07:52:43 -0700 | [diff] [blame] | 139 | /* Given the set [0, 1, 2, 3], and two of the four members, compute an XOR mask |
| 140 | that computes the other two. Note that: |
| 141 | |
| 142 | one ^ two == 3 for (0, 3), (1, 2) |
| 143 | one ^ two < 3 for (0, 1), (0, 2), (1, 3), (2, 3) |
| 144 | 3 - (one ^ two) is either 0, 1, or 2 |
| 145 | 1 >> (3 - (one ^ two)) is either 0 or 1 |
| 146 | thus: |
| 147 | returned == 2 for (0, 3), (1, 2) |
| 148 | returned == 3 for (0, 1), (0, 2), (1, 3), (2, 3) |
| 149 | given that: |
| 150 | (0, 3) ^ 2 -> (2, 1) (1, 2) ^ 2 -> (3, 0) |
| 151 | (0, 1) ^ 3 -> (3, 2) (0, 2) ^ 3 -> (3, 1) (1, 3) ^ 3 -> (2, 0) (2, 3) ^ 3 -> (1, 0) |
| 152 | */ |
| 153 | inline int other_two(int one, int two) { |
| 154 | return 1 >> (3 - (one ^ two)) ^ 3; |
| 155 | } |
| 156 | |
caryclark@google.com | 07393ca | 2013-04-08 11:47:37 +0000 | [diff] [blame] | 157 | #endif |