コード例 #1
0
 def __init__(self, glyph):
     BasePointToSegmentPen.__init__(self)
     self.glyph = glyph
コード例 #2
0
 def __init__(self, glyph, subsegmentGlyph, subsegments):
     BasePointToSegmentPen.__init__(self)
     self.glyph = glyph
     self.subPen = SubsegmentsToCurvesPen(None, glyph.getPen(), subsegmentGlyph, subsegments)
コード例 #3
0
 def __init__(self, glyph, resolution):
     BasePointToSegmentPen.__init__(self)
     self.glyph = glyph
     self.resolution = resolution
     self.subPen = SubsegmentPen(None, glyph.getPen())
コード例 #4
0
 def __init__(self, segmentPen, outputImpliedClosingLine=False):
     BasePointToSegmentPen.__init__(self)
     self.pen = segmentPen
     self.outputImpliedClosingLine = outputImpliedClosingLine
コード例 #5
0
ファイル: rfUFOPen.py プロジェクト: adrientetar/robofab
	def __init__(self, glyph):
		BasePointToSegmentPen.__init__(self)
		self.glyph = glyph
コード例 #6
0
ファイル: adapterPens.py プロジェクト: adrientetar/robofab
	def __init__(self, segmentPen, outputImpliedClosingLine=False):
		BasePointToSegmentPen.__init__(self)
		self.pen = segmentPen
		self.outputImpliedClosingLine = outputImpliedClosingLine