HomeSort by relevance Sort by last modified time
    Searched refs:endT (Results 1 - 10 of 10) sorted by null

  /external/skia/src/pathops/
SkPathOpsRect.cpp 13 void SkDRect::setBounds(const SkDQuad& curve, const SkDQuad& sub, double startT, double endT) {
25 double t = startT + (endT - startT) * tValues[index];
30 void SkDRect::setBounds(const SkDConic& curve, const SkDConic& sub, double startT, double endT) {
42 double t = startT + (endT - startT) * tValues[index];
47 void SkDRect::setBounds(const SkDCubic& curve, const SkDCubic& sub, double startT, double endT) {
59 double t = startT + (endT - startT) * tValues[index];
SkPathOpsCurve.h 262 static bool line_is_vertical(const SkPoint a[2], SkScalar , double startT, double endT) {
265 SkDPoint dst[2] = { line.ptAtT(startT), line.ptAtT(endT) };
269 static bool quad_is_vertical(const SkPoint a[3], SkScalar , double startT, double endT) {
272 SkDQuad dst = quad.subDivide(startT, endT);
276 static bool conic_is_vertical(const SkPoint a[3], SkScalar weight, double startT, double endT) {
279 SkDConic dst = conic.subDivide(startT, endT);
283 static bool cubic_is_vertical(const SkPoint a[4], SkScalar , double startT, double endT) {
286 SkDCubic dst = cubic.subDivide(startT, endT);
SkPathOpsCubic.h 131 double top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const;
SkOpSegment.h 107 bool collapsed(double startT, double endT) const;
127 void debugAddAngle(double startT, double endT);
SkOpSegment.cpp     [all...]
SkPathOpsTSect.h 120 double endT() const {
    [all...]
SkOpAngle.cpp     [all...]
SkPathOpsCubic.cpp 721 double SkDCubic::top(const SkDCubic& dCurve, double startT, double endT, SkDPoint*topPt) const {
726 double t = startT + (endT - startT) * extremeTs[index];
SkPathOpsDebug.cpp 191 double endT, const SkOpSegment* oppSeg, double oppStartT, double oppEndT) {
195 glitch->fEndT = endT;
408 SkDebugf(" endT=%g", glitch.fEndT);
    [all...]
  /external/skia/tests/
PathOpsAngleTest.cpp 481 void SkOpSegment::debugAddAngle(double startT, double endT) {
484 SkOpPtT* endPtT = endT == 0 ? fHead.ptT() : endT == 1 ? fTail.ptT()
485 : this->addT(endT);
496 if (startT < endT) {

Completed in 1037 milliseconds