Wolfram: Compose Transformations
Composition of Transformations
Composition[a,b,c,etc]
-
🔸 SHORT SYNTAX:
a @* b @* c @* etc
return a composition of functions.
the result of
Composition[a,b,c]
is
a[b[c]]
Example: Composition of Transformations
(* show the input and output of transform functions, and composition on them *) Clear[ xRot, xMove, xF ]; xRot = RotationTransform[10 Degree ]; xMove = TranslationTransform[ {1,0} ]; xF = Composition[ RotationTransform[10 Degree ], TranslationTransform[ {1,0} ] ]; {xRot, xMove, xF} xF[{a,b}] xF[{1,0}]

WolframLang, Graphics Programing
- Wolfram: Graphics Programing Index
- Wolfram: Plot and Visualization
- Wolfram: Graphics Primitives
- Wolfram: Graphics Directives
- Wolfram: Extract Graphics from Plot
- Wolfram: Geometric Transformation Functions
- Wolfram: Apply Transform to Graphics
- Wolfram: Compose Transformations
- Wolfram: Translate Copy Graphics
- Wolfram: Transformation Matrix
- Wolfram: GraphicsComplex
- Wolfram: Mesh Region
- Wolfram: Graphics Misc
- Wolfram: Animation