LinePrimitive and RectanglePrimitive was added
This commit is contained in:
13
StructureHelperCommon/Models/Shapes/RectangleShape.cs
Normal file
13
StructureHelperCommon/Models/Shapes/RectangleShape.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace StructureHelperCommon.Models.Shapes
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public class RectangleShape : IRectangleShape
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public double Width { get; set; }
|
||||
/// <inheritdoc />
|
||||
public double Height { get; set; }
|
||||
/// <inheritdoc />
|
||||
public double Angle { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user