three.MF.V3.Descriptors.Settings.Viewer

 1class Viewer:
 2
 3    """
 4     3D Viewer settings descriptor.
 5    """
 6    class TextureOpacity:
 7
 8        """
 9         Texture opacity.
10        """
11        def __init__(self, value: float, default: float, min: float, max: float):
12            self.value = value
13            self.default = default
14            self.min = min
15            self.max = max
16
17    def __init__(self, textureOpacity: 'TextureOpacity'):
18        # Texture opacity.
19        self.textureOpacity = textureOpacity
class Viewer:
 2class Viewer:
 3
 4    """
 5     3D Viewer settings descriptor.
 6    """
 7    class TextureOpacity:
 8
 9        """
10         Texture opacity.
11        """
12        def __init__(self, value: float, default: float, min: float, max: float):
13            self.value = value
14            self.default = default
15            self.min = min
16            self.max = max
17
18    def __init__(self, textureOpacity: 'TextureOpacity'):
19        # Texture opacity.
20        self.textureOpacity = textureOpacity

3D Viewer settings descriptor.

Viewer( textureOpacity: Viewer.TextureOpacity)
18    def __init__(self, textureOpacity: 'TextureOpacity'):
19        # Texture opacity.
20        self.textureOpacity = textureOpacity
textureOpacity
class Viewer.TextureOpacity:
 7    class TextureOpacity:
 8
 9        """
10         Texture opacity.
11        """
12        def __init__(self, value: float, default: float, min: float, max: float):
13            self.value = value
14            self.default = default
15            self.min = min
16            self.max = max

Texture opacity.

Viewer.TextureOpacity(value: float, default: float, min: float, max: float)
12        def __init__(self, value: float, default: float, min: float, max: float):
13            self.value = value
14            self.default = default
15            self.min = min
16            self.max = max
value
default
min
max