freetypy.Matrix

class freetypy.Matrix

A 2x2 matrix.

The computation performed is:

x' = x*xx + y*xy
y' = x*yx + y*yy
__init__()

x.__init__(...) initializes x; see help(type(x)) for signature

Attributes

xx Matrix coefficient.
xy Matrix coefficient.
yx Matrix coefficient.
yy Matrix coefficient.