Lines Matching defs:currPt
282 void line_to(const SkPoint& currPt, const SkVector& normal);
287 bool SkPathStroker::preJoinTo(const SkPoint& currPt, SkVector* normal,
294 if (!set_normal_unitnormal(fPrevPt, currPt, fResScale, fRadius, normal, unitNormal)) {
320 void SkPathStroker::postJoinTo(const SkPoint& currPt, const SkVector& normal,
323 fPrevPt = currPt;
429 void SkPathStroker::line_to(const SkPoint& currPt, const SkVector& normal) {
430 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY);
431 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY);
466 void SkPathStroker::lineTo(const SkPoint& currPt, const SkPath::Iter* iter) {
467 bool teenyLine = SkPointPriv::EqualsWithinTolerance(fPrevPt, currPt, SK_ScalarNearlyZero * fInvResScale);
476 if (!this->preJoinTo(currPt, &normal, &unitNormal, true)) {
479 this->line_to(currPt, normal);
480 this->postJoinTo(currPt, normal, unitNormal);