From c3940db302102876e0eb0c6cf758b38266b318b5 Mon Sep 17 00:00:00 2001 From: Alexander Fabisch Date: Wed, 2 Aug 2023 16:36:08 +0200 Subject: [PATCH] Correct types --- pytransform3d/plot_utils/_plot_functions.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytransform3d/plot_utils/_plot_functions.pyi b/pytransform3d/plot_utils/_plot_functions.pyi index 7390caba1..36d835e61 100644 --- a/pytransform3d/plot_utils/_plot_functions.pyi +++ b/pytransform3d/plot_utils/_plot_functions.pyi @@ -12,14 +12,14 @@ def plot_box(ax: Union[None, Axes3D] = ..., size: npt.ArrayLike = ..., def plot_sphere( ax: Union[None, Axes3D] = ..., radius: float = ..., p: npt.ArrayLike = ..., ax_s: float = ..., wireframe: bool = ..., - n_steps: float = ..., alpha: float = ..., + n_steps: int = ..., alpha: float = ..., color: str = ...) -> Axes3D: ... def plot_spheres( ax: Union[None, Axes3D] = ..., radius: npt.ArrayLike = ..., p: npt.ArrayLike = ..., ax_s: float = ..., wireframe: bool = ..., - n_steps: float = ..., alpha: npt.ArrayLike = ..., + n_steps: int = ..., alpha: npt.ArrayLike = ..., color: npt.ArrayLike = ...) -> Axes3D: ...