TransformationList#
- class named_arrays.transformations.TransformationList(transformations, intrinsic=True)#
Bases:
AbstractTransformationListAn arbitrary sequence of transformations.
Attributes
The composed version of the transformation.
If
True, the transformation will be applied to the coordinates.A new transformation that reverses the effect of this transformation.
The shape of the transformation.
The underlying list of transformations to compose together.
Methods
__init__(transformations[, intrinsic])Inheritance Diagram

- Parameters:
transformations (list[AbstractTransformation])
intrinsic (bool)
- property composed: AbstractTransformation#
The composed version of the transformation.
This is a single transformation representing the entire sequence of transformations.
- intrinsic: bool = True#
If
True, the transformation will be applied to the coordinates. IfFalse, the transformation will be applied to the coordinate system.
- property inverse: AbstractTransformation#
A new transformation that reverses the effect of this transformation.
- transformations: list[AbstractTransformation] = <dataclasses._MISSING_TYPE object>#
The underlying list of transformations to compose together.