mirror of
https://github.com/3b1b/manim.git
synced 2025-08-19 21:08:53 +00:00
Provide an epsilon of room to Sphere at poles
This commit is contained in:
parent
55da5d5d03
commit
a58327657c
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ class Sphere(Surface):
|
|||
def __init__(
|
||||
self,
|
||||
u_range: Tuple[float, float] = (0, TAU),
|
||||
v_range: Tuple[float, float] = (0, PI),
|
||||
v_range: Tuple[float, float] = (1e-5, PI - 1e-5),
|
||||
resolution: Tuple[int, int] = (101, 51),
|
||||
radius: float = 1.0,
|
||||
**kwargs,
|
||||
|
|
Loading…
Add table
Reference in a new issue