Files
StructureHelper/StructureHelperCommon/Models/Shapes/LineShape.cs
2023-02-12 23:38:24 +05:00

21 lines
504 B
C#

namespace StructureHelperCommon.Models.Shapes
{
/// <inheritdoc />
public class LineShape : ILineShape
{
/// <inheritdoc />
public IPoint2D StartPoint { get; set; }
/// <inheritdoc />
public IPoint2D EndPoint { get; set; }
/// <inheritdoc />
public double Thickness { get; set; }
public LineShape()
{
StartPoint = new Point2D();
EndPoint = new Point2D();
Thickness = 0;
}
}
}