Analysis Chapter 1

Analysis Chapter 1 and Neorged everything for Analysis
This commit is contained in:
2025-05-05 15:18:59 +02:00
parent a175aa4512
commit cacd24f103
52 changed files with 3921 additions and 60 deletions

View File

@@ -0,0 +1,15 @@
from manim import *
class ball(Scene):
def construct(self):
self.camera.background_color = WHITE
circ1 = Circle(radius=1, color=PURPLE, fill_opacity=1).move_arc_center_to(
3 * LEFT
)
circ2 = Circle(radius=1, color=BLUE, fill_opacity=0.5)
circ3 = Circle(radius=1, color=GREEN).move_arc_center_to(3 * RIGHT)
self.add(circ1, circ2, circ3)