instruction
stringclasses
1 value
output
stringlengths
67
242
input
stringlengths
35
85
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=1.5, color=RED) self.add(circle)
Create a circle with radius 1.5 and color it red.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=1.5, color=RED) self.add(circle) self.play(circle.animate.scale(2), run_time=1.5)
Scale the circle by a factor of 2 in 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): text = Text('Hello, Manim!') self.add(text)
Create a text object saying 'Hello, Manim!' and add it to the scene.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): text = Text('Hello, Manim!') self.add(text) self.play(FadeIn(text), run_time=1)
Fade in the text object over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2) and color it green.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1)
Rotate the line segment by 45 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=3, height=4, color=ORANGE) self.add(rectangle)
Create a rectangle with width 3 and height 4 and color it orange.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=3, height=4, color=ORANGE) self.add(rectangle) self.play(rectangle.animate.shift(DOWN * 2), run_time=1.5)
Move the rectangle downward by 2 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = Polygon((-2, 0), (0, 2), (2, 0), color=YELLOW) self.add(polygon)
Create a polygon with vertices at (-2, 0), (0, 2), and (2, 0) and color it yellow.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = Polygon((-2, 0), (0, 2), (2, 0), color=YELLOW) self.add(polygon) self.play(polygon.animate.scale(1.5), run_time=2)
Scale the polygon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=PINK) self.add(hexagon)
Create a regular hexagon with side length 2 and color it pink.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=PINK) self.add(hexagon) self.play(hexagon.animate.rotate(60 * DEGREES), run_time=1.5)
Rotate the hexagon by 60 degrees clockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=6, height=4, color=PURPLE) self.add(ellipse)
Create an ellipse with x-radius 3 and y-radius 2 and color it purple.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=6, height=4, color=PURPLE) self.add(ellipse) self.play(FadeOut(ellipse), run_time=1)
Fade out the ellipse over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=CYAN) self.add(heptagon)
Create a regular heptagon with side length 2 and color it cyan.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=CYAN) self.add(heptagon) self.play(heptagon.animate.shift(LEFT * 3), run_time=1.5)
Move the heptagon to the left by 3 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): point = Dot((2, 2), color=TEAL) self.add(point)
Create a point at coordinates (2, 2) and color it teal.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=GRAY) self.add(dodecagon)
Create a regular dodecagon with side length 2 and color it gray.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=GRAY) self.add(dodecagon) self.play(dodecagon.animate.rotate(-30 * DEGREES), run_time=1.5)
Rotate the dodecagon by 30 degrees counterclockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=BROWN) self.add(pentagon)
Create a regular pentagon with side length 2 and color it brown.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=BROWN) self.add(pentagon) self.play(pentagon.animate.shift(UP * 2), run_time=1)
Move the pentagon upward by 2 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=OLIVE) self.add(octagon)
Create a regular octagon with side length 2 and color it olive.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=OLIVE) self.add(octagon) self.play(octagon.animate.scale(1.5), run_time=2)
Scale the octagon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): tetradecagon = RegularPolygon(n=14, radius=2, color=LIME) self.add(tetradecagon)
Create a regular tetradecagon with side length 2 and color it lime.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): tetradecagon = RegularPolygon(n=14, radius=2, color=LIME) self.add(tetradecagon) self.play(tetradecagon.animate.shift(RIGHT * 4), run_time=2)
Move the tetradecagon to the right by 4 units over 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=20, radius=2, color=ORANGE) self.add(polygon)
Create a regular polygon with 20 sides, side length 2, and color it orange.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=20, radius=2, color=ORANGE) self.add(polygon) self.play(polygon.animate.rotate(-75 * DEGREES), run_time=1.5)
Rotate the polygon by 75 degrees counterclockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.shift(RIGHT * 3), run_time=1)
Move the line segment to the right by 3 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=6, radius=2, color=PURPLE) self.add(polygon)
Create a regular polygon with 6 sides, side length 2, and color it purple.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=6, radius=2, color=PURPLE) self.add(polygon) self.play(polygon.animate.rotate(90 * DEGREES), run_time=1.5)
Rotate the polygon by 90 degrees clockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (4, 0), color=GREEN) self.add(line)
Create a line segment from (0, 0) to (4, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (4, 0), color=GREEN) self.add(line) self.play(line.animate.shift(UP * 2), run_time=1)
Move the line segment upward by 2 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(polygon)
Create a regular polygon with 8 sides, side length 2, and color it teal.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(polygon) self.play(polygon.animate.scale(1.5), run_time=2)
Scale the polygon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line)
Create a line segment from (1, 1) to (-1, -1).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1.5)
Rotate the line segment by 45 degrees counterclockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=10, radius=2, color=YELLOW) self.add(polygon)
Create a regular polygon with 10 sides, side length 2, and color it yellow.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=10, radius=2, color=YELLOW) self.add(polygon) self.play(polygon.animate.shift(LEFT * 3), run_time=1)
Move the polygon to the left by 3 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line)
Create a line segment from (-3, 0) to (3, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line) self.play(line.animate.shift(DOWN * 2), run_time=1.5)
Move the line segment downward by 2 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=12, radius=2, color=BLUE) self.add(polygon)
Create a regular polygon with 12 sides, side length 2, and color it blue.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=12, radius=2, color=BLUE) self.add(polygon) self.play(polygon.animate.scale(1.5), run_time=2)
Scale the polygon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1)
Rotate the line segment by 45 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=6, radius=2, color=RED) self.add(polygon)
Create a regular polygon with 6 sides, side length 2, and color it red.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=6, radius=2, color=RED) self.add(polygon) self.play(polygon.animate.shift(RIGHT * 3), run_time=1.5)
Move the polygon to the right by 3 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1)
Rotate the line segment by 45 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=8, radius=2, color=PINK) self.add(polygon)
Create a regular polygon with 8 sides, side length 2, and color it pink.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): polygon = RegularPolygon(n=8, radius=2, color=PINK) self.add(polygon) self.play(polygon.animate.scale(1.5), run_time=2)
Scale the polygon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): square = Square(side_length=2, color=RED) self.add(square)
Create a square with side length 2 and color it red.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): square = Square(side_length=2, color=RED) self.add(square) self.play(square.animate.shift(UP * 2), run_time=1)
Move the square upward by 2 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=3, height=4, color=BLUE) self.add(rectangle)
Create a rectangle with width 3 and height 4.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): rectangle = Rectangle(width=3, height=4, color=BLUE) self.add(rectangle) self.play(rectangle.animate.rotate(90 * DEGREES), run_time=1.5)
Rotate the rectangle by 90 degrees clockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=4, height=6, color=GREEN) self.add(ellipse)
Create an ellipse with x-radius 2 and y-radius 3.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): ellipse = Ellipse(width=4, height=6, color=GREEN) self.add(ellipse) self.play(ellipse.animate.scale(1.5), run_time=2)
Scale the ellipse by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=2, color=ORANGE) self.add(circle)
Create a circle with radius 2 and color it orange.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): circle = Circle(radius=2, color=ORANGE) self.add(circle) self.play(circle.animate.shift(LEFT * 3), run_time=1.5)
Move the circle to the left by 3 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=YELLOW) self.add(hexagon)
Create a regular hexagon with side length 2 and color it yellow.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=YELLOW) self.add(hexagon) self.play(hexagon.animate.rotate(-120 * DEGREES), run_time=1)
Rotate the hexagon by 120 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (4, 0), color=GREEN) self.add(line)
Create a line segment from (0, 0) to (4, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (4, 0), color=GREEN) self.add(line) self.play(line.animate.shift(UP * 2), run_time=1)
Move the line segment upward by 2 units over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=PURPLE) self.add(pentagon)
Create a regular pentagon with side length 2 and color it purple.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=PURPLE) self.add(pentagon) self.play(pentagon.animate.scale(2), run_time=1.5)
Scale the pentagon by a factor of 2 in 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line)
Create a line segment from (-3, 0) to (3, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line) self.play(line.animate.shift(DOWN * 2), run_time=1.5)
Move the line segment downward by 2 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(octagon)
Create a regular octagon with side length 2 and color it teal.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(octagon) self.play(octagon.animate.rotate(90 * DEGREES), run_time=1)
Rotate the octagon by 90 degrees clockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line)
Create a line segment from (1, 1) to (-1, -1).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1.5)
Rotate the line segment by 45 degrees counterclockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=PINK) self.add(heptagon)
Create a regular heptagon with side length 2 and color it pink.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=PINK) self.add(heptagon) self.play(heptagon.animate.scale(1.5), run_time=2)
Scale the heptagon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1)
Rotate the line segment by 45 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=RED) self.add(hexagon)
Create a regular hexagon with side length 2 and color it red.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): hexagon = RegularPolygon(n=6, radius=2, color=RED) self.add(hexagon) self.play(hexagon.animate.shift(RIGHT * 3), run_time=1.5)
Move the hexagon to the right by 3 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line)
Create a line segment from (-2, -2) to (2, 2).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, -2), (2, 2), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1)
Rotate the line segment by 45 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): nonagon = RegularPolygon(n=9, radius=2, color=BLUE) self.add(nonagon)
Create a regular nonagon with side length 2 and color it blue.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): nonagon = RegularPolygon(n=9, radius=2, color=BLUE) self.add(nonagon) self.play(nonagon.animate.scale(2), run_time=1.5)
Scale the nonagon by a factor of 2 in 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-1, -1), (1, 1), color=GREEN) self.add(line)
Create a line segment from (-1, -1) to (1, 1).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-1, -1), (1, 1), color=GREEN) self.add(line) self.play(line.animate.rotate(90 * DEGREES), run_time=1)
Rotate the line segment by 90 degrees clockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): decagon = RegularPolygon(n=10, radius=2, color=ORANGE) self.add(decagon)
Create a regular decagon with side length 2 and color it orange.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): decagon = RegularPolygon(n=10, radius=2, color=ORANGE) self.add(decagon) self.play(decagon.animate.shift(DOWN * 3), run_time=1.5)
Move the decagon downward by 3 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (3, 0), color=GREEN) self.add(line)
Create a line segment from (0, 0) to (3, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((0, 0), (3, 0), color=GREEN) self.add(line) self.play(line.animate.rotate(-60 * DEGREES), run_time=1)
Rotate the line segment by 60 degrees counterclockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=PINK) self.add(dodecagon)
Create a regular dodecagon with side length 2 and color it pink.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): dodecagon = RegularPolygon(n=12, radius=2, color=PINK) self.add(dodecagon) self.play(dodecagon.animate.scale(1.5), run_time=2)
Scale the dodecagon by a factor of 1.5 in 2 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, 0), (2, 0), color=GREEN) self.add(line)
Create a line segment from (-2, 0) to (2, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-2, 0), (2, 0), color=GREEN) self.add(line) self.play(line.animate.shift(UP * 1), run_time=1)
Move the line segment upward by 1 unit over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=PURPLE) self.add(pentagon)
Create a regular pentagon with side length 2 and color it purple.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): pentagon = RegularPolygon(n=5, radius=2, color=PURPLE) self.add(pentagon) self.play(pentagon.animate.rotate(90 * DEGREES), run_time=1.5)
Rotate the pentagon by 90 degrees clockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line)
Create a line segment from (-3, 0) to (3, 0).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((-3, 0), (3, 0), color=GREEN) self.add(line) self.play(line.animate.shift(DOWN * 2), run_time=1.5)
Move the line segment downward by 2 units over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(octagon)
Create a regular octagon with side length 2 and color it teal.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): octagon = RegularPolygon(n=8, radius=2, color=TEAL) self.add(octagon) self.play(octagon.animate.rotate(90 * DEGREES), run_time=1)
Rotate the octagon by 90 degrees clockwise over 1 second.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line)
Create a line segment from (1, 1) to (-1, -1).
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): line = Line((1, 1), (-1, -1), color=GREEN) self.add(line) self.play(line.animate.rotate(-45 * DEGREES), run_time=1.5)
Rotate the line segment by 45 degrees counterclockwise over 1.5 seconds.
Manim is an animation engine for creating precise programmatic animations, primarily designed for explanatory math videos. It allows users to generate animations using Python code, enabling the creation of visually appealing and educational mathematical visualizations.
from manim import * class MyScene(Scene): def construct(self): heptagon = RegularPolygon(n=7, radius=2, color=PINK) self.add(heptagon)
Create a regular heptagon with side length 2 and color it pink.