Wolfram: Animation
Interactive Manipulation
Manipulate
-
creates a interactive object, where variables can be changed via slider.
it returns a
DynamicModule
object.xx = Manipulate[ Plot[Sin[x t], {x, 0, 2 Pi}, PlotRange->{{0, 2 Pi}, {-1, 1}}], {t, 1, 3}] (* export as a movie *) Export[ "xx.mp4", xx ]
wl sine animation 2024-06-28
Animation
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 of typically graphics object.
xPlots = Table[Plot[Sin[x t], {x, 0, 2 Pi}, PlotRange -> {{0, 2 Pi}, {-1, 1}}], {t, 1, 3, 0.2}] ListAnimate[ xPlots ] (* export as a movie *) Export[ "xx.mp4", xPlots ] (* export as gif *) Export[ "xx.gif", xPlots ]
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