Simply3DScan
Line.cs
Go to the documentation of this file.
1 using System.Drawing;
2 using PostSharp.Patterns.Contracts;
3 
4 namespace Configuration
5 {
9  public class Line
10  {
17  public Color Color { get; set; }
24  [Required]
25  public Coordinates Coordinates { get; set; }
32  [Positive]
33  public double PercentFromTop { get; set; }
34  }
35 }
X,Y,Z - coordinates
Definition: Coordinates.cs:6
double PercentFromTop
Gets or sets the percent from top.
Definition: Line.cs:33
Color Color
Gets or sets the color.
Definition: Line.cs:17