/external/skia/src/pathops/ |
D | SkPathOpsPoint.h | 17 struct SkDVector { struct 27 void operator+=(const SkDVector& v) { argument 33 void operator-=(const SkDVector& v) { 56 double cross(const SkDVector& a) const { in cross() argument 61 double crossCheck(const SkDVector& a) const { in crossCheck() argument 67 double dot(const SkDVector& a) const { in dot() argument 89 friend SkDVector operator-(const SkDPoint& a, const SkDPoint& b); argument 105 void operator+=(const SkDVector& v) { 111 void operator-=(const SkDVector& v) { 117 SkDPoint operator+(const SkDVector& v) { [all …]
|
D | SkPathOpsLine.cpp | 32 SkDVector p0 = fPts[1] - fPts[0]; in isLeft() 33 SkDVector p2 = pt - fPts[0]; in isLeft() 65 SkDVector len = fPts[1] - fPts[0]; // the x/y magnitudes of the line in nearPoint() 67 SkDVector ab0 = xy - fPts[0]; in nearPoint() 92 SkDVector len = fPts[1] - fPts[0]; // the x/y magnitudes of the line in nearRay() 94 SkDVector ab0 = xy - fPts[0]; in nearRay() 129 SkDVector distU = {xy.fY - y, xy.fX - realPtX}; in NearPointH() 164 SkDVector distU = {xy.fX - x, xy.fY - realPtY}; in NearPointV()
|
D | SkPathOpsCubic.h | 43 SkDVector v01 = fPts[0] - fPts[1]; in controlsInside() 44 SkDVector v02 = fPts[0] - fPts[2]; in controlsInside() 45 SkDVector v03 = fPts[0] - fPts[3]; in controlsInside() 46 SkDVector v13 = fPts[1] - fPts[3]; in controlsInside() 47 SkDVector v23 = fPts[2] - fPts[3]; in controlsInside() 71 SkDVector dxdyAtT(double t) const;
|
D | SkOpAngle.cpp | 274 SkDVector scratch[2]; in checkParallel() 275 const SkDVector* sweep, * tweep; in checkParallel() 311 SkDVector m0 = segment()->dPtAtT(this->midT()) - this->fCurvePart[0]; in checkParallel() 312 SkDVector m1 = rh->segment()->dPtAtT(rh->midT()) - rh->fCurvePart[0]; in checkParallel() 376 const SkDVector* sweep = this->fSweep; in convexHullOverlaps() 377 const SkDVector* tweep = rh->fSweep; in convexHullOverlaps() 407 SkDVector m0 = this->segment()->dPtAtT(this->midT()) - this->fCurvePart[0]; in convexHullOverlaps() 408 SkDVector m1 = rh->segment()->dPtAtT(rh->midT()) - rh->fCurvePart[0]; in convexHullOverlaps() 433 SkDVector v; in distEndRatio() 480 SkDVector sCept = {0, 0}; in endsIntersect() [all …]
|
D | SkPathOpsQuad.h | 33 SkDVector v01 = fPts[0] - fPts[1]; in controlsInside() 34 SkDVector v02 = fPts[0] - fPts[2]; in controlsInside() 35 SkDVector v12 = fPts[1] - fPts[2]; in controlsInside() 63 SkDVector dxdyAtT(double t) const;
|
D | SkPathOpsPoint.cpp | 9 SkDVector operator-(const SkDPoint& a, const SkDPoint& b) { in operator -() 10 SkDVector v = {a.fX - b.fX, a.fY - b.fY}; in operator -()
|
D | SkPathOpsCurve.h | 142 static SkDVector dline_dxdy_at_t(const SkPoint a[2], SkScalar , double ) { in dline_dxdy_at_t() 148 static SkDVector dquad_dxdy_at_t(const SkPoint a[3], SkScalar , double t) { in dquad_dxdy_at_t() 154 static SkDVector dconic_dxdy_at_t(const SkPoint a[3], SkScalar weight, double t) { in dconic_dxdy_at_t() 160 static SkDVector dcubic_dxdy_at_t(const SkPoint a[4], SkScalar , double t) { in dcubic_dxdy_at_t() 166 static SkDVector (* const CurveDSlopeAtT[])(const SkPoint[], SkScalar , double ) = {
|
D | SkPathOpsWinding.cpp | 56 static double pt_dxdy(const SkDVector& v, SkOpRayDir dir) { in pt_dxdy() 60 static double pt_dydx(const SkDVector& v, SkOpRayDir dir) { in pt_dydx() 77 static bool ccw_dxdy(const SkDVector& v, SkOpRayDir dir) { in ccw_dxdy() 99 SkDVector fSlope; 137 SkDVector slope; in rayCheck()
|
D | SkPathOpsConic.cpp | 46 SkDVector SkDConic::dxdyAtT(double t) const { in dxdyAtT() 47 SkDVector result = { in dxdyAtT()
|
D | SkIntersections.cpp | 137 SkDVector best = fPt[result] - origin; in mostOutside() 138 SkDVector test = fPt[index] - origin; in mostOutside()
|
D | SkDLineIntersection.cpp | 36 SkDVector aLen = a[1] - a[0]; in intersectRay() 37 SkDVector bLen = b[1] - b[0]; in intersectRay() 45 SkDVector ab0 = a[0] - b[0]; in intersectRay()
|
D | SkOpAngle.h | 131 SkDVector fSweep[2];
|
D | SkPathOpsQuad.cpp | 158 SkDVector SkDQuad::dxdyAtT(double t) const { in dxdyAtT() 162 SkDVector result = { a * fPts[0].fX + b * fPts[1].fX + c * fPts[2].fX, in dxdyAtT()
|
D | SkPathOpsConic.h | 58 SkDVector dxdyAtT(double t) const;
|
D | SkPathOpsCubic.cpp | 266 SkDVector dPt = cubic.dxdyAtT(inflectionTs[index]); in ComplexBreak() 273 SkDVector dPt = cubic.dxdyAtT(maxCurvature[index]); in ComplexBreak() 475 SkDVector SkDCubic::dxdyAtT(double t) const { in dxdyAtT() 476 SkDVector result = { derivative_at_t(&fPts[0].fX, t), derivative_at_t(&fPts[0].fY, t) }; in dxdyAtT()
|
D | SkPathOpsTSect.h | 317 SkDVector dxdy = c1.dxdyAtT(t); in setPerp() 561 SkDVector len = fPart[TCurve::kPointLast] - fPart[0]; in linearT() 638 SkDVector v1 = *otherPts[o1] - base; in onlyEndPointsInCommon() 640 SkDVector v2 = *oppOtherPts[o2] - base; in onlyEndPointsInCommon() 1325 SkDVector perpS, perpE; in linesIntersect() 1359 SkDVector perpW = workPt - coinW.perpPt(); in linesIntersect() 1386 SkDVector dxdy = this->fCurve.dxdyAtT(t); in matchedDirection() 1387 SkDVector dxdy2 = sect2->fCurve.dxdyAtT(t2); in matchedDirection() 1518 SkDVector startV = test->fCoinStart.perpPt() - test->fPart[0]; in removeByPerpendicular() 1519 SkDVector endV = test->fCoinEnd.perpPt() - test->fPart[TCurve::kPointLast]; in removeByPerpendicular()
|
D | SkPathOpsTypes.h | 451 struct SkDVector;
|
D | SkOpSegment.h | 167 SkDVector dSlopeAtT(double mid) const { in dSlopeAtT()
|
D | SkOpSegment.cpp | 518 SkDVector slope = this->dSlopeAtT(t); in distSq() 838 SkDVector dxdy = (*CurveDSlopeAtT[this->verb()])(this->pts(), this->weight(), t); in isClose()
|
/external/skia/tests/ |
D | PathOpsAngleIdeas.cpp | 44 SkDVector offset = {quad[0].fX, quad[0].fY}; in testArc() 105 const SkDVector& pt = quad.ptAtT(t) - quad[0]; in quadAngle() 116 static void setQuadHullSweep(const SkDQuad& quad, SkDVector sweep[2]) { in setQuadHullSweep() 122 SkDVector v[] = {quad[2] - quad[0], quad[1] - quad[0], quad[2] - quad[1]}; in distEndRatio() 128 SkDVector sweep[2], tweep[2]; in checkParallel() 151 SkDVector m0 = quad1.ptAtT(0.5) - quad1[0]; in checkParallel() 152 SkDVector m1 = quad2.ptAtT(0.5) - quad2[0]; in checkParallel() 163 SkDVector sweep[2], tweep[2]; in quadHullsOverlap() 195 SkDVector m0 = quad1.ptAtT(0.5) - quad1[0]; in quadHullsOverlap() 196 SkDVector m1 = quad2.ptAtT(0.5) - quad2[0]; in quadHullsOverlap() [all …]
|
D | PathOpsDVectorTest.cpp | 25 SkDVector v1 = tests[index + 1] - tests[index]; in DEF_TEST() 27 SkDVector v2 = tests[index] - tests[index + 1]; in DEF_TEST()
|
D | PathOpsTestCommon.h | 25 bool ValidVector(const SkDVector& v);
|
D | PathOpsDPointTest.cpp | 30 SkDVector v = p - pt; in DEF_TEST()
|
D | PathOpsTestCommon.cpp | 326 bool ValidVector(const SkDVector& v) { in ValidVector()
|