Searched defs:testT (Results 1 - 3 of 3) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp308 double testT = maxCurvature[index]; local
309 if (0 >= testT || testT >= 1) {
313 SkDVector dPt = { derivative_at_t(&cubic.fPts[0].fX, testT),
314 derivative_at_t(&cubic.fPts[0].fY, testT) };
317 t[resultCount++] = testT;
H A DSkOpAngle.cpp452 double testT = i[0][idx2]; local
453 if (!approximately_between_orderable(tStart, testT, tEnd)) {
456 if (approximately_equal_orderable(tStart, testT)) {
459 smallTs[index] = t = testAscends ? SkTMax(t, testT) : SkTMin(t, testT);
937 double testT = testTs[testIndex]; local
939 testT = (testT + testTs[testIndex + 1]) / 2;
942 SkDPoint pt = dcubic_xy_at_t(pts, segment->weight(), testT);
H A DSkOpSegment.cpp1003 bool SkOpSegment::match(const SkOpPtT* base, const SkOpSegment* testParent, double testT, argument
1007 if (precisely_equal(base->fT, testT)) {
1014 return this != testParent || !this->ptsDisjoint(base->fT, base->fPt, testT, testPt);

Completed in 742 milliseconds