Transformation
- class Transformation
A
Transformationis the base class for all transformations.Methods
Apply this
Transformationto a vector.- __matmul__(other: Transformation) Transformation
Composes this transformation with another, applying the other first.
- __rmatmul__(other: Transformation) Transformation
Composes this transformation with another, applying this one first.
- abstract apply(vector: ndarray[3]) ndarray[3]
Apply this
Transformationto a vector.