mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
parent
a2606c7e37
commit
8adf99b8a7
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ class Circle(Arc):
|
|||
def point_at_angle(self, angle: float) -> np.ndarray:
|
||||
start_angle = self.get_start_angle()
|
||||
return self.point_from_proportion(
|
||||
(angle - start_angle) / TAU
|
||||
((angle - start_angle) % TAU) / TAU
|
||||
)
|
||||
|
||||
def get_radius(self) -> float:
|
||||
|
|
Loading…
Add table
Reference in a new issue