three.MF.V3.Settings.BoundingBox

 1from MF.V3.Settings.ScanSelection import ScanSelection as MF_V3_Settings_ScanSelection_ScanSelection
 2
 3
 4class BoundingBox:
 5
 6    """
 7     Bounding box settings.
 8    """
 9    def __init__(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool):
10        # The scan selection.
11        self.selection = selection
12        """
13        If `true`, align the bounding box with the world axes.
14        Otherwise orient the bounding box with the scans.
15        """
16        self.axisAligned = axisAligned
class BoundingBox:
 5class BoundingBox:
 6
 7    """
 8     Bounding box settings.
 9    """
10    def __init__(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool):
11        # The scan selection.
12        self.selection = selection
13        """
14        If `true`, align the bounding box with the world axes.
15        Otherwise orient the bounding box with the scans.
16        """
17        self.axisAligned = axisAligned

Bounding box settings.

BoundingBox( selection: MF.V3.Settings.ScanSelection.ScanSelection, axisAligned: bool)
10    def __init__(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool):
11        # The scan selection.
12        self.selection = selection
13        """
14        If `true`, align the bounding box with the world axes.
15        Otherwise orient the bounding box with the scans.
16        """
17        self.axisAligned = axisAligned
selection

If true, align the bounding box with the world axes. Otherwise orient the bounding box with the scans.

axisAligned