Lines Matching refs:verbs
27 SkPath contain geometry. SkPath may be empty, or contain one or more verbs that
29 and may be followed by additional verbs that add lines or curves.
49 * The points and weights arrays are read in order, based on the sequence of verbs.
58 * If an illegal sequence of verbs is encountered, or the specified number of points
59 * or weights is not sufficient given the verbs, an empty Path is returned.
61 * A legal sequence of verbs consists of any number of Contours. A contour always begins
95 /** Constructs an empty SkPath. By default, SkPath has no verbs, no SkPoint, and no weights.
162 /** Returns true if SkPath contain equal verbs and equal weights.
165 conicTo() may add different verbs depending on conic weight, so it is not
436 /** Returns the number of verbs: kMove_Verb, kLine_Verb, kQuad_Verb, kConic_Verb,
445 /** Returns the number of verbs in the path. Up to max verbs are copied. The
446 verbs are copied as one byte per verb.
448 @param verbs storage for verbs, may be nullptr
449 @param max maximum number to copy into verbs
450 @return the actual number of verbs in the path
454 int getVerbs(uint8_t verbs[], int max) const;
1051 specified direction. The verbs added to the path will be:
1255 verbs, SkPoint, and conic weights.
1257 @param src SkPath verbs, SkPoint, and conic weights to add
1270 verbs, SkPoint, and conic weights.
1272 @param src SkPath verbs, SkPoint, and conic weights to add
1283 verbs, SkPoint, and conic weights.
1287 verbs, SkPoint, and conic weights.
1289 @param src SkPath verbs, SkPoint, and conic weights to add
1300 @param src SkPath verbs, SkPoint, and conic weights to add
1328 transform may change verbs and increase their number.
1342 transform may change verbs and increase their number.
1405 if SkPath contains one or more verbs of that type.
1527 Iterates through a raw range of path verbs, points, and conics. All values are returned
1535 RangeIter(const uint8_t* verbs, const SkPoint* points, const SkScalar* weights)
1536 : fVerb(verbs), fPoints(points), fWeights(weights) {