mirror of
https://github.com/3b1b/manim.git
synced 2025-08-03 04:04:36 +08:00
Provide an epsilon of room to Sphere at poles
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user