Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manim/mobject/geometry/arc.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ def construct(self):
def __init__(
self,
radius: float = 1.0,
start_angle=0,
angle=TAU / 4,
start_angle: float = 0,
angle: float = TAU / 4,
num_components=9,
arc_center=ORIGIN,
**kwargs,
Expand Down
2 changes: 1 addition & 1 deletion manim/mobject/mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def add_animation_override(
The animation type to be overridden
override_func
The function returning an animation replacing the default animation. It gets
passed the parameters given to the animnation constructor.
passed the parameters given to the animation constructor.

Raises
------
Expand Down