three.MF.V3.Settings.Group

 1from typing import List
 2
 3
 4class Group:
 5
 6    """
 7     Scan group settings.
 8    """
 9    def __init__(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None):
10        # The unique group index that identifies the group within the group tree.
11        self.index = index
12        # Group name.
13        self.name = name
14        # Color in the renderer.
15        self.color = color
16        # Visibility in the renderer.
17        self.visible = visible
18        # Collapsed state in the group tree.
19        self.collapsed = collapsed
20        """
21        Axis-angle rotation vector.
22        The direction of the vector is the rotation axis.
23        The magnitude of the vector is rotation angle in radians.
24        """
25        self.rotation = rotation
26        # Translation vector.
27        self.translation = translation
class Group:
 5class Group:
 6
 7    """
 8     Scan group settings.
 9    """
10    def __init__(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None):
11        # The unique group index that identifies the group within the group tree.
12        self.index = index
13        # Group name.
14        self.name = name
15        # Color in the renderer.
16        self.color = color
17        # Visibility in the renderer.
18        self.visible = visible
19        # Collapsed state in the group tree.
20        self.collapsed = collapsed
21        """
22        Axis-angle rotation vector.
23        The direction of the vector is the rotation axis.
24        The magnitude of the vector is rotation angle in radians.
25        """
26        self.rotation = rotation
27        # Translation vector.
28        self.translation = translation

Scan group settings.

Group( index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None)
10    def __init__(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None):
11        # The unique group index that identifies the group within the group tree.
12        self.index = index
13        # Group name.
14        self.name = name
15        # Color in the renderer.
16        self.color = color
17        # Visibility in the renderer.
18        self.visible = visible
19        # Collapsed state in the group tree.
20        self.collapsed = collapsed
21        """
22        Axis-angle rotation vector.
23        The direction of the vector is the rotation axis.
24        The magnitude of the vector is rotation angle in radians.
25        """
26        self.rotation = rotation
27        # Translation vector.
28        self.translation = translation
index
name
color
visible
collapsed

Axis-angle rotation vector. The direction of the vector is the rotation axis. The magnitude of the vector is rotation angle in radians.

rotation
translation