Analysis Chapter 1
Analysis Chapter 1 and Neorged everything for Analysis
This commit is contained in:
BIN
fs25/analysis_I_II/graphs/__pycache__/main.cpython-312.pyc
Normal file
BIN
fs25/analysis_I_II/graphs/__pycache__/main.cpython-312.pyc
Normal file
Binary file not shown.
15
fs25/analysis_I_II/graphs/main.py
Normal file
15
fs25/analysis_I_II/graphs/main.py
Normal 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)
|
Reference in New Issue
Block a user