Skip to content

Commit

Permalink
Correct types
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderFabisch committed Aug 2, 2023
1 parent 9f510db commit 7d6443b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytransform3d/plot_utils/_plot_functions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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: ...


Expand Down

0 comments on commit 7d6443b

Please sign in to comment.