Transformable

class Transformable

A transformable object (subclass of Transformable) is any object that can be transformed by a Transformation.

The exact implementation of this is specified by implementing transform() for each type of accepted transformation.

Additionally, a transformable objects transformable can be transformed by a transformation t by t @ transformable (__rmatmul__ calls transform()).

Methods

transform

Transform this Transformable by a given Transformation.

__rmatmul__(transformation: Transformation) T_co

Computes transformable.transform(t) when performing t @ transformable for a Transformation t and Transformable transformable.

abstract transform(transformation: Transformation) T_co

Transform this Transformable by a given Transformation.