Files
StructureHelper/StructureHelperCommon/Models/Shapes/LineShape.cs
2022-11-27 17:04:34 +05:00

27 lines
621 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}