Skip to content

Commit ec3c57f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a0e841f commit ec3c57f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

manim/mobject/three_d/three_dimensions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1271,5 +1271,8 @@ def func(self, u: float, v: float) -> np.ndarray:
12711271
:class:`numpy.ndarray`
12721272
The z values defining the :class:`Torus`.
12731273
"""
1274+
12741275
P = np.array([np.cos(u), np.sin(u), 0])
1275-
return (self.R - self.minor_radius * np.cos(v)) * P - self.minor_radius * np.sin(v) * OUT
1276+
return (self.R - self.minor_radius * np.cos(v)) * P - self.minor_radius * np.sin(
1277+
v
1278+
) * OUT

0 commit comments

Comments
 (0)