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

  /external/skia/src/pathops/
SkPathOpsConic.cpp 135 double midT = (t1 + t2) / 2;
136 double dx = conic_eval_numerator(&fPts[0].fX, fWeight, midT);
137 double dy = conic_eval_numerator(&fPts[0].fY, fWeight, midT);
138 double dz = conic_eval_denominator(fWeight, midT);
SkOpAngle.h 80 double midT() const;
SkOpCoincidence.cpp 517 double midT = (prev->t() + start->t()) / 2;
518 if (segment->isClose(midT, oppSegment)) {
526 double midT = (end->t() + next->t()) / 2;
527 if (segment->isClose(midT, oppSegment)) {
SkOpAngle.cpp 263 SkDVector m0 = segment()->dPtAtT(this->midT()) - this->fCurvePart[0];
264 SkDVector m1 = rh->segment()->dPtAtT(rh->midT()) - rh->fCurvePart[0];
359 SkDVector m0 = this->segment()->dPtAtT(this->midT()) - this->fCurvePart[0];
360 SkDVector m1 = rh->segment()->dPtAtT(rh->midT()) - rh->fCurvePart[0];
724 double SkOpAngle::midT() const {
    [all...]
SkOpSegment.cpp     [all...]
SkPathOpsDebug.cpp     [all...]
SkPathOpsTSect.h     [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 324 float& midT, SkPoint &midPoint, float errorSquared) {
325 midT = (t1 + t0) / 2;
329 midPoint = (*bezierFunction)(midT, points);
359 float midT;
361 iter->second, next->first, next->second, midT, midPoint, errorSquared);
366 iter->second, midT, midPoint, quarterT, quarterPoint, errorSquared);
373 next = tToPoint.insert(iter, PointMap::value_type(midT, midPoint));

Completed in 161 milliseconds