CompositeTransformation

class CompositeTransformation(*transformations: Transformation)

A CompositeTransformation is a Transformation made by composing several transformations in sequence. When transforming geometry, each sub-transformation is applied in sequence.

Parameters:

transformations – Transformations composing this transformation, supplied in the order of application (first-in, first-applied).

Attributes

transformations

Transformations composing this transformation, supplied in the order of application (first-in, first-applied).

Methods

apply

Apply this CompositeTransformation to a vector.

apply(vector: ndarray[3]) ndarray[3]

Apply this CompositeTransformation to a vector.

transformations

Transformations composing this transformation, supplied in the order of application (first-in, first-applied).