Added comments for bend class.

This commit is contained in:
AJ
2019-11-22 06:25:38 -05:00
parent 5637080b99
commit 222431190b

View File

@@ -2,13 +2,20 @@
{ {
internal class Bend internal class Bend
{ {
public BendDirection Direction { get; set; }
public double BendLineAngle { get; set; } public double BendLineAngle { get; set; }
public BendDirection Direction { get; set; }
public double Angle { get; set; } public double Angle { get; set; }
/// <summary>
/// X coordinate of the bend line in meters
/// </summary>
public double X { get; set; } public double X { get; set; }
/// <summary>
/// Y coordinate of the bend line in meters
/// </summary>
public double Y { get; set; } public double Y { get; set; }
} }
} }