mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
2*np.pi -> TAU. Because why not?
This commit is contained in:
parent
8ec9e4d425
commit
e63074a72e
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class Circle(Arc):
|
|||
}
|
||||
|
||||
def __init__(self, **kwargs):
|
||||
Arc.__init__(self, 2 * np.pi, **kwargs)
|
||||
Arc.__init__(self, TAU, **kwargs)
|
||||
|
||||
def surround(self, mobject, dim_to_match=0, stretch=False, buffer_factor=1.2):
|
||||
# Ignores dim_to_match and stretch; result will always be a circle
|
||||
|
|
Loading…
Add table
Reference in a new issue