We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82f93b6 commit 90141dfCopy full SHA for 90141df
1 file changed
manim/mobject/types/vectorized_mobject.py
@@ -155,7 +155,7 @@ def __init__(
155
self.shade_in_3d: bool = shade_in_3d
156
self.tolerance_for_point_equality: float = tolerance_for_point_equality
157
self.n_points_per_cubic_curve: int = n_points_per_cubic_curve
158
- self._bezier_t_values: npt.NDArray[float] = np.linspace(
+ self._bezier_t_values: npt.NDArray[np.float64] = np.linspace(
159
0, 1, n_points_per_cubic_curve
160
)
161
self.cap_style: CapStyleType = cap_style
0 commit comments