Return the values of the matrix as an ``(a, b, c, d, e, f)`` tuple.
(self)
| 1899 | return mtx[0, 1] == mtx[1, 0] == 0.0 |
| 1900 | |
| 1901 | def to_values(self): |
| 1902 | """ |
| 1903 | Return the values of the matrix as an ``(a, b, c, d, e, f)`` tuple. |
| 1904 | """ |
| 1905 | mtx = self.get_matrix() |
| 1906 | return tuple(mtx[:2].swapaxes(0, 1).flat) |
| 1907 | |
| 1908 | def transform_affine(self, values): |
| 1909 | mtx = self.get_matrix() |