Lines Matching refs:t11
2929 def shapetransform(self, t11=None, t12=None, t21=None, t22=None):
2932 Optional arguments: t11, t12, t21, t22 -- numbers.
2937 according to the matrix consisting of first row t11, t12 and
2949 if t11 is t12 is t21 is t22 is None:
2952 if t11 is not None: m11 = t11
2956 if t11 * t22 - t12 * t21 == 0:
3003 t11, t12, t21, t22 = self._shapetrafo
3006 t11, t12, t21, t22 = l, 0, 0, l
3009 return tuple((t11*x + t12*y, t21*x + t22*y) for (x, y) in polygon)