Simply3DScan
Laser.cs
Go to the documentation of this file.
1 using PostSharp.Patterns.Contracts;
2 namespace Configuration
3 {
7  public class Laser
8  {
15  [Required]
16  public Coordinates WorldCoordinates { get; set; }
23  public float UpperRange { get; set; }
30  public float LowerRange { get; set; }
37  [Positive]
38  public int Offset { get; set; }
45  public float SwipeMin { get; set; }
52  public float SwipeMax { get; set; }
59  public bool MotorEnabled { get; set; }
60  }
61 }
float UpperRange
Gets or sets the upper range.
Definition: Laser.cs:23
Coordinates WorldCoordinates
Gets or sets the world coordinates.
Definition: Laser.cs:16
X,Y,Z - coordinates
Definition: Coordinates.cs:6
float SwipeMax
Gets or sets the swipe maximum.
Definition: Laser.cs:52
float LowerRange
Gets or sets the lower range.
Definition: Laser.cs:30
Configuration regarding a laser
Definition: Laser.cs:7
int Offset
Gets or sets the offset.
Definition: Laser.cs:38
float SwipeMin
Gets or sets the swipe minimum.
Definition: Laser.cs:45
bool MotorEnabled
Gets or sets a value indicating whether [motor enabled].
Definition: Laser.cs:59