Lines Matching defs:p1

373         exact changes the equality test. If true, returns true only if p1 equals p2.
374 If false, returns true if p1 equals or nearly equals p2.
376 @param p1 line start point
381 static bool IsLineDegenerate(const SkPoint& p1, const SkPoint& p2, bool exact);
387 @param p1 quad start point
390 @param exact if true, returns true only if p1, p2, and p3 are equal;
391 if false, returns true if p1, p2, and p3 are equal or nearly equal
394 static bool IsQuadDegenerate(const SkPoint& p1, const SkPoint& p2,
401 @param p1 cubic start point
405 @param exact if true, returns true only if p1, p2, p3, and p4 are equal;
406 if false, returns true if p1, p2, p3, and p4 are equal or nearly equal
409 static bool IsCubicDegenerate(const SkPoint& p1, const SkPoint& p2,
617 /** Adds quad from last point towards SkPoint p1, to SkPoint p2.
622 then appends kQuad_Verb to verb array; and SkPoint p1, p2
625 @param p1 control SkPoint of added quad
628 void quadTo(const SkPoint& p1, const SkPoint& p2) {
629 this->quadTo(p1.fX, p1.fY, p2.fX, p2.fY);
674 /** Adds conic from last point towards SkPoint p1, to SkPoint p2, weighted by w.
681 and SkPoint p1, p2 to SkPoint array; and w to conic weights.
683 If w is one, appends kQuad_Verb to verb array, and SkPoint p1, p2
687 SkPoint p1, p2 to SkPoint array.
689 @param p1 control SkPoint of added conic
693 void conicTo(const SkPoint& p1, const SkPoint& p2, SkScalar w) {
694 this->conicTo(p1.fX, p1.fY, p2.fX, p2.fY, w);
742 /** Adds cubic from last point towards SkPoint p1, then towards SkPoint p2, ending at
747 then appends kCubic_Verb to verb array; and SkPoint p1, p2, p3
750 @param p1 first control SkPoint of cubic
754 void cubicTo(const SkPoint& p1, const SkPoint& p2, const SkPoint& p3) {
755 this->cubicTo(p1.fX, p1.fY, p2.fX, p2.fY, p3.fX, p3.fY);
811 last SkPath point to p1, and tangent from p1 to p2. Arc
815 The length of vector from p1 to p2 does not affect arc.
818 tangents are nearly parallel, arcTo() appends line from last SkPath SkPoint to p1.
823 @param p1 SkPoint common to pair of tangents
827 void arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) {
828 this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius);
960 control SkPoint p1, end SkPoint p2, and weight w.
977 @param p1 conic control SkPoint
984 static int ConvertConicToQuads(const SkPoint& p0, const SkPoint& p1, const SkPoint& p2,