Skip to content

Commit 327387a

Browse files
committed
BF: fix billboard_sphere function name
1 parent 6402b1e commit 327387a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fury/actor/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ __all__ = [
6565
"contour_from_label",
6666
]
6767

68-
from .billboard import billboard, billboard_sphere
68+
from .billboard import billboard, billboard_sphere # noqa: F401
6969
from .bio import contour_from_label, contour_from_roi, peaks_slicer, volume_slicer
7070
from .core import (
7171
Actor,

fury/actor/billboard.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
from __future__ import annotations
99

10-
__all__ = ["billboard", "create_billboard_sphere", "Billboard"]
10+
__all__ = ["billboard", "billboard_sphere", "Billboard"]
1111

1212
import numpy as np
1313

14-
from fury.actor import Mesh
14+
from fury.actor.core import Mesh
1515
from fury.geometry import buffer_to_geometry
1616
from fury.lib import register_wgpu_render_function
1717
from fury.material import (
@@ -171,7 +171,7 @@ def billboard(
171171
)
172172

173173

174-
def create_billboard_sphere(
174+
def billboard_sphere(
175175
centers,
176176
*,
177177
colors=(1, 1, 1),

0 commit comments

Comments
 (0)