Simply3DScan
Turntable.cs
Go to the documentation of this file.
1 using PostSharp.Patterns.Contracts;
2 namespace Configuration
3 {
7  public class Turntable
8  {
15  public Coordinates WorldCoordinates { get; set; }
22  [StrictlyPositive]
23  public double Radius { get; set; }
24 
31  [Positive]
32  public int SafetyDistance { get; set; }
33  }
34 }
Configuration of a turntable
Definition: Turntable.cs:7
X,Y,Z - coordinates
Definition: Coordinates.cs:6
int SafetyDistance
Gets or sets the safety distance.
Definition: Turntable.cs:32
Coordinates WorldCoordinates
Gets or sets the world coordinates.
Definition: Turntable.cs:15
double Radius
Gets or sets the radius.
Definition: Turntable.cs:23