mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
typehint change for _bezier_t_values
This commit is contained in:
parent
21cf9998cc
commit
281ddde558
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class VMobject(Mobject):
|
|||
self.shade_in_3d: bool = shade_in_3d
|
||||
self.tolerance_for_point_equality: float = tolerance_for_point_equality
|
||||
self.n_points_per_cubic_curve: int = n_points_per_cubic_curve
|
||||
self._bezier_t_values: npt.NDArray[float] = np.linspace(
|
||||
self._bezier_t_values: npt.NDArray[np.float64] = np.linspace(
|
||||
0, 1, n_points_per_cubic_curve
|
||||
)
|
||||
self.cap_style: CapStyleType = cap_style
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue