Skip to content

Commit

Permalink
plot3d (octarine): fix plotting points
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Sep 15, 2024
1 parent f5160bb commit 9b783c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion navis/plotting/ddd.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,8 @@ def plot3d_octarine(x, **kwargs):
center=settings.center,
)
if points:
viewer.add_points(points, center=settings.center, **settings.scatter_kws)
for p in points:
viewer.add_points(p, center=settings.center, **settings.scatter_kws)

return viewer

Expand Down

0 comments on commit 9b783c9

Please sign in to comment.