fontTools.pens.transformPen
index
/home/mcfletch/pylive/fontTools/pens/transformPen.py

 
Classes
       
AbstractPen
TransformPen

 
class TransformPen(AbstractPen)
    Pen that transforms all coordinates using a Affine transformation,
and passes them to another pen.
 
  Methods defined here:
__init__(self, outPen, transformation)
The 'outPen' argument is another pen object. It will receive the
transformed coordinates. The 'transformation' argument can either
be a six-tuple, or a fontTools.misc.transform.Transform object.
addComponent(self, glyphName, transformation)
closePath(self)
curveTo(self, *points)
lineTo(self, pt)
moveTo(self, pt)
qCurveTo(self, *points)

Methods inherited from AbstractPen:
endPath(self)
End the current sub path, but don't close it. You must call
either pen.closePath() or pen.endPath() after each sub path.

 
Data
        __all__ = ['TransformPen']
__file__ = '/home/mcfletch/pylive/fontTools/pens/transformPen.pyc'
__name__ = 'fontTools.pens.transformPen'
__package__ = 'fontTools.pens'