Wolfram: Animation
Interactive Manipulation
Manipulate
-
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}]
wl sine animation 2024-06-28
Animation
Animate
-
same as
Manipulate
, but automatically animate it.xx = Animate[ 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 ]
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 ]
Wolfram. Graphics Programing
- Wolfram: Graphics Programing Index
- Wolfram: Graphics Primitive
- Wolfram: Graphics, Graphics3D
- Wolfram: Graphics Directive
- 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: Mesh Region Examples
- Wolfram: Extract Graphics from Plot Functions
- Wolfram: Graphics Misc
- Wolfram: Animation