Lines Matching refs:pts
113 bool setQuadratic(const SkPoint pts[3]);
130 bool setCubic(const SkPoint pts[4], bool sortY = true);
157 bool set(const SkPoint pts[2]){
158 if (IsEmpty(pts[0].fY, pts[1].fY)) {
162 fP0 = pts[0];
163 fP1 = pts[1];
171 bool set(const SkPoint pts[3]){
172 if (IsEmpty(pts[0].fY, pts[2].fY)) {
176 fP0 = pts[0];
177 fP1 = pts[1];
178 fP2 = pts[2];
187 bool set(const SkPoint pts[4]){
188 // We do not chop at y extrema for cubics so pts[0], pts[1], pts[2], pts[3] may not be
190 // checking IsEmpty(pts[0].fY, pts[3].fY).
191 if (IsEmpty(pts[0].fY, pts[1].fY) && IsEmpty(pts[1].fY, pts[2].fY) &&
192 IsEmpty(pts[2].fY, pts[3].fY)) {
196 fP0 = pts[0];
197 fP1 = pts[1];
198 fP2 = pts[2];
199 fP3 = pts[3];