반응형
Animation in Manim is implemented by changing the shape of the object for each frame of the video.
To change the shape of an object for each frame is to make the position/color of each object different. This can be done by moving objects (to_edge, etc.), color conversion methods (set_color, etc.) or Animation classes.
This chapter describes how to implement animation in Manim by dividing it into 3 parts.
- Using Animation class : [06-1] Animation by Classes
- Using the object's method: [06-2] Animation by Object's Method
- Using the object's update method. : [06-3] Animation by Object Updating
Next: [06-1] Animation by Classes
Go To: [99] Table of Contents
반응형
'Programming > Manim Lectures' 카테고리의 다른 글
[06-1-A] Animation Class and Rate Function (2) | 2020.06.09 |
---|---|
[06-1] Animation by Classes (0) | 2020.06.09 |
[05-5-E] Scene for Graph: GraphScene (0) | 2020.06.07 |
[05-5-D] Grid Background: NumberPlane (0) | 2020.06.07 |
[05-5-C] Graph Coordinate: Axes (0) | 2020.06.07 |