Lines Matching refs:currPt
103 void line_to(const SkPoint& currPt, const SkVector& normal);
116 void SkPathStroker::preJoinTo(const SkPoint& currPt, SkVector* normal, in preJoinTo() argument
123 SkAssertResult(set_normal_unitnormal(fPrevPt, currPt, fRadius, normal, in preJoinTo()
140 void SkPathStroker::postJoinTo(const SkPoint& currPt, const SkVector& normal, in postJoinTo() argument
142 fPrevPt = currPt; in postJoinTo()
210 void SkPathStroker::line_to(const SkPoint& currPt, const SkVector& normal) { in line_to() argument
211 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY); in line_to()
212 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY); in line_to()
215 void SkPathStroker::lineTo(const SkPoint& currPt) { in lineTo() argument
216 if (SkPath::IsLineDegenerate(fPrevPt, currPt)) { in lineTo()
221 this->preJoinTo(currPt, &normal, &unitNormal, true); in lineTo()
222 this->line_to(currPt, normal); in lineTo()
223 this->postJoinTo(currPt, normal, unitNormal); in lineTo()