using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.Data.Shapes
{
public interface IRectangle : IShape
{
///
/// Width of rectangle, m
///
double Width { get; }
///
/// Height of rectangle, m
///
double Height { get; }
///
/// Angle of rotating rectangle, rad
///
double Angle { get; }
}
}