Lines Matching full:pt1
208 def _curveToOne(self, pt1, pt2, pt3): argument
219 def _qCurveToOne(self, pt1, pt2): argument
225 pt1x, pt1y = pt1
276 for pt1, pt2, pt3 in decomposeSuperBezierSegment(points):
277 _curveToOne(pt1, pt2, pt3)
308 for pt1, pt2 in decomposeQuadraticSegment(points):
309 _qCurveToOne(pt1, pt2)
322 This function returns a list of (pt1, pt2, pt3) tuples, which each
328 pt1, pt2, pt3 = points[0], None, None
343 bezierSegments.append((pt1, pt2, pt3))
344 pt1, pt2, pt3 = temp, None, None
345 bezierSegments.append((pt1, points[-2], points[-1]))
356 This function returns a list of (pt1, pt2) tuples, which each specify a