Home | History | Annotate | Download | only in pens

Lines Matching full:points

34 	def curveTo(self, *points):
35 self._outPen.curveTo(*self._transformPoints(points))
37 def qCurveTo(self, *points):
38 if points[-1] is None:
39 points = self._transformPoints(points[:-1]) + [None]
41 points = self._transformPoints(points)
42 self._outPen.qCurveTo(*points)
44 def _transformPoints(self, points):
47 for pt in points: