We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56723a commit 0d3464cCopy full SHA for 0d3464c
manim/mobject/geometry/arc.py
@@ -282,8 +282,8 @@ def construct(self):
282
def __init__(
283
self,
284
radius: float = 1.0,
285
- start_angle=0,
286
- angle=TAU / 4,
+ start_angle: float = 0,
+ angle: float = TAU / 4,
287
num_components=9,
288
arc_center=ORIGIN,
289
**kwargs,
manim/mobject/mobject.py
@@ -160,7 +160,7 @@ def add_animation_override(
160
The animation type to be overridden
161
override_func
162
The function returning an animation replacing the default animation. It gets
163
- passed the parameters given to the animnation constructor.
+ passed the parameters given to the animation constructor.
164
165
Raises
166
------
0 commit comments