We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f56c08 commit 6402b1eCopy full SHA for 6402b1e
fury/actor/curved.py
@@ -86,7 +86,6 @@ def sphere(
86
The thickness of the wireframe lines.
87
impostor : bool, optional
88
Render spheres as billboard impostors instead of geometry when ``True``.
89
- Defaults to ``False``.
90
91
Returns
92
-------
@@ -134,7 +133,7 @@ def sphere(
134
133
obj.billboard_radii = radii_arr.copy()
135
return obj
136
137
- scales = radii
+ scales = radii_arr
138
directions = (1, 0, 0)
139
140
vertices, faces = fp.prim_sphere(phi=phi, theta=theta)
@@ -152,8 +151,6 @@ def sphere(
152
151
wireframe=wireframe,
153
wireframe_thickness=wireframe_thickness,
154
)
155
- obj.billboard_radii = radii_arr.copy()
156
- obj.billboard_mode = "mesh"
157
158
159
0 commit comments