three.MF.V3.Settings.Turntable
1class Turntable: 2 3 """ 4 Turntable settings. 5 """ 6 def __init__(self, scans: int, sweep: int, use: bool = None, pointClippingRadius: float = None, pointClippingMinHeight: float = None, pointClippingMaxHeight: float = None, offsetAngle: float = None): 7 # The number of turntable scans. 8 self.scans = scans 9 # Turntable angle sweep in degrees. 10 self.sweep = sweep 11 # Use the turntable. 12 self.use = use 13 # The radius of the point clipping cylinder. 14 self.pointClippingRadius = pointClippingRadius 15 # The minimum height of the point clipping cylinder. 16 self.pointClippingMinHeight = pointClippingMinHeight 17 # The maximum height of the point clipping cylinder. 18 self.pointClippingMaxHeight = pointClippingMaxHeight 19 # The offset Angle of the turntable for starting position 20 self.offsetAngle = offsetAngle
class
Turntable:
2class Turntable: 3 4 """ 5 Turntable settings. 6 """ 7 def __init__(self, scans: int, sweep: int, use: bool = None, pointClippingRadius: float = None, pointClippingMinHeight: float = None, pointClippingMaxHeight: float = None, offsetAngle: float = None): 8 # The number of turntable scans. 9 self.scans = scans 10 # Turntable angle sweep in degrees. 11 self.sweep = sweep 12 # Use the turntable. 13 self.use = use 14 # The radius of the point clipping cylinder. 15 self.pointClippingRadius = pointClippingRadius 16 # The minimum height of the point clipping cylinder. 17 self.pointClippingMinHeight = pointClippingMinHeight 18 # The maximum height of the point clipping cylinder. 19 self.pointClippingMaxHeight = pointClippingMaxHeight 20 # The offset Angle of the turntable for starting position 21 self.offsetAngle = offsetAngle
Turntable settings.
Turntable( scans: int, sweep: int, use: bool = None, pointClippingRadius: float = None, pointClippingMinHeight: float = None, pointClippingMaxHeight: float = None, offsetAngle: float = None)
7 def __init__(self, scans: int, sweep: int, use: bool = None, pointClippingRadius: float = None, pointClippingMinHeight: float = None, pointClippingMaxHeight: float = None, offsetAngle: float = None): 8 # The number of turntable scans. 9 self.scans = scans 10 # Turntable angle sweep in degrees. 11 self.sweep = sweep 12 # Use the turntable. 13 self.use = use 14 # The radius of the point clipping cylinder. 15 self.pointClippingRadius = pointClippingRadius 16 # The minimum height of the point clipping cylinder. 17 self.pointClippingMinHeight = pointClippingMinHeight 18 # The maximum height of the point clipping cylinder. 19 self.pointClippingMaxHeight = pointClippingMaxHeight 20 # The offset Angle of the turntable for starting position 21 self.offsetAngle = offsetAngle