19 lines
466 B
C#
19 lines
466 B
C#
namespace StructureHelperCommon.Models.Shapes
|
|
{
|
|
public interface IRectangleShape : IShape
|
|
{
|
|
/// <summary>
|
|
/// Width of rectangle, m
|
|
/// </summary>
|
|
double Width { get; set; }
|
|
/// <summary>
|
|
/// Height of rectangle, m
|
|
/// </summary>
|
|
double Height { get; set; }
|
|
/// <summary>
|
|
/// Angle of rotating rectangle, rad
|
|
/// </summary>
|
|
double Angle { get; set; }
|
|
}
|
|
}
|