forked from plotly/plotly.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_spaceframe.py
29 lines (27 loc) · 1.18 KB
/
_spaceframe.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import _plotly_utils.basevalidators
class SpaceframeValidator(_plotly_utils.basevalidators.CompoundValidator):
def __init__(self, plotly_name="spaceframe", parent_name="isosurface", **kwargs):
super(SpaceframeValidator, self).__init__(
plotly_name=plotly_name,
parent_name=parent_name,
data_class_str=kwargs.pop("data_class_str", "Spaceframe"),
data_docs=kwargs.pop(
"data_docs",
"""
fill
Sets the fill ratio of the `spaceframe`
elements. The default fill value is 0.15
meaning that only 15% of the area of every
faces of tetras would be shaded. Applying a
greater `fill` ratio would allow the creation
of stronger elements or could be sued to have
entirely closed areas (in case of using 1).
show
Displays/hides tetrahedron shapes between
minimum and maximum iso-values. Often useful
when either caps or surfaces are disabled or
filled with values less than 1.
""",
),
**kwargs,
)