Home | History | Annotate | Download | only in pens

Lines Matching refs:pt1

164 	def _curveToOne(self, pt1, pt2, pt3):
175 def _qCurveToOne(self, pt1, pt2):
181 pt1x, pt1y = pt1
245 for pt1, pt2, pt3 in decomposeSuperBezierSegment(points):
246 _curveToOne(pt1, pt2, pt3)
277 for pt1, pt2 in decomposeQuadraticSegment(points):
278 _qCurveToOne(pt1, pt2)
291 This function returns a list of (pt1, pt2, pt3) tuples, which each
297 pt1, pt2, pt3 = points[0], None, None
312 bezierSegments.append((pt1, pt2, pt3))
313 pt1, pt2, pt3 = temp, None, None
314 bezierSegments.append((pt1, points[-2], points[-1]))
325 This function returns a list of (pt1, pt2) tuples, which each specify a