using StructureHelperCommon.Infrastructures.Interfaces; using System; namespace StructureHelperCommon.Models.Shapes { /// /// Interface for point of center of some shape /// Интерфейс для точки центра некоторой формы /// public interface IPoint2D : ISaveable, ICloneable { /// /// Coordinate of center of point by local axis X, m /// Координата центра вдоль локальной оси X, м /// double X { get; set; } /// /// Coordinate of center of point by local axis Y, m /// Координата центра вдоль локальной оси Y, м /// double Y { get; set; } } }