LinePrimitive and RectanglePrimitive was added
This commit is contained in:
15
StructureHelperCommon/Models/Shapes/ILineShape.cs
Normal file
15
StructureHelperCommon/Models/Shapes/ILineShape.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
public interface ILineShape : IShape
|
||||
{
|
||||
ICenter StartPoint { get; set; }
|
||||
ICenter EndPoint { get; set; }
|
||||
double Thickness { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user