Files
ExportDXF/ExportDXF/Bend.cs
2019-11-22 06:25:38 -05:00

21 lines
481 B
C#

namespace ExportDXF
{
internal class Bend
{
public double BendLineAngle { get; set; }
public BendDirection Direction { get; set; }
public double Angle { get; set; }
/// <summary>
/// X coordinate of the bend line in meters
/// </summary>
public double X { get; set; }
/// <summary>
/// Y coordinate of the bend line in meters
/// </summary>
public double Y { get; set; }
}
}