WolframLang: Animation
Animation
work in progressManipulate
-
creates a interactive object, where variables can be changed via slider.
it returns a
DynamicModule
object.Manipulate[ Plot[Sin[x t], {x, 0, 2 Pi}, PlotRange->{{0, 2 Pi}, {-1, 1}}], {t, 1, 3}]
Animate
-
same as
Manipulate
, but automatically animate it.Animate[ Plot[Sin[x t], {x, 0, 2 Pi}, PlotRange->{{0, 2 Pi}, {-1, 1}}], {t, 1, 3}]
ListAnimate
-
generate an animation from a list.
DynamicModule
Reference
WolframLang, Graphics Programing
- WolframLang: Plot and Visualization
- WolframLang: Graphics Primitives
- WolframLang: Graphics Directives
- WolframLang: Extract Graphics from Plot
- WolframLang: Geometric Transformation Functions
- WolframLang: Compose Transformations
- WolframLang: Apply Transform to Graphics
- WolframLang: Translate Copy Graphics
- WolframLang: Transformation Matrix
- WolframLang: GraphicsComplex
- WolframLang: Mesh Region
- WolframLang: Graphics Misc
- WolframLang: Animation