Lines Matching defs:close
30 Adding a close verb makes the geometry into a continuous loop, a closed contour.
294 Contour is closed if SkPath SkPath::Verb array was last modified by close(). When stroked,
989 close() has no effect if SkPath is empty or last SkPath SkPath::Verb is kClose_Verb.
995 SkPath& close();
1209 in pts array. If close is true, appends kClose_Verb to SkPath, connecting
1217 @param close true to add line connecting contour end and start
1222 SkPath& addPoly(const SkPoint pts[], int count, bool close);
1225 for every additional SkPoint in list. If close is true, appends kClose_Verb to SkPath,
1231 @param close true to add line connecting contour end and start
1234 SkPath& addPoly(const std::initializer_list<SkPoint>& list, bool close) {
1235 return this->addPoly(list.begin(), SkToInt(list.size()), close);
1503 SkPath::Iter may have been initialized with force close set to true.
1812 // SkPath path; ... path.close(); path.lineTo(...) <-- need a moveTo(previous moveTo)