Get the matrix for the affine part of this transform.
(self)
| 1631 | return IdentityTransform() |
| 1632 | |
| 1633 | def get_matrix(self): |
| 1634 | """Get the matrix for the affine part of this transform.""" |
| 1635 | return self.get_affine().get_matrix() |
| 1636 | |
| 1637 | def transform_point(self, point): |
| 1638 | """ |
nothing calls this directly
no test coverage detected