Skip to content

Commit 90141df

Browse files
GoThroneschopan050
andauthored
Change VMobject._bezier_t_values typehint to ndarray of np.float64 (#4675)
Co-authored-by: Francisco Manríquez Novoa <49853152+chopan050@users.noreply.github.com>
1 parent 82f93b6 commit 90141df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manim/mobject/types/vectorized_mobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def __init__(
155155
self.shade_in_3d: bool = shade_in_3d
156156
self.tolerance_for_point_equality: float = tolerance_for_point_equality
157157
self.n_points_per_cubic_curve: int = n_points_per_cubic_curve
158-
self._bezier_t_values: npt.NDArray[float] = np.linspace(
158+
self._bezier_t_values: npt.NDArray[np.float64] = np.linspace(
159159
0, 1, n_points_per_cubic_curve
160160
)
161161
self.cap_style: CapStyleType = cap_style

0 commit comments

Comments
 (0)