Transformation

class Transformation

A Transformation is the base class for all transformations.

Methods

apply

Apply this Transformation to 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 Transformation to a vector.