Transformable
- class Transformable
A transformable object (subclass of
Transformable) is any object that can be transformed by aTransformation.The exact implementation of this is specified by implementing
transform()for each type of accepted transformation.Additionally, a transformable objects
transformablecan be transformed by a transformationtbyt @ transformable(__rmatmul__callstransform()).Methods
Transform this
Transformableby a givenTransformation.- __rmatmul__(transformation: Transformation) T_co
Computes
transformable.transform(t)when performingt @ transformablefor aTransformationtandTransformabletransformable.
- abstract transform(transformation: Transformation) T_co
Transform this
Transformableby a givenTransformation.