using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperLogics.Data.Shapes
{
///
/// Interface for point of center of some shape
/// Интерфейс для точки центра некоторой формы
///
public interface ICenter
{
///
/// Coordinate of center of rectangle by local axis X, m
/// Координата центра вдоль локальной оси X, м
///
double X { get;}
///
/// Coordinate of center of rectangle by local axis Y, m
/// Координата центра вдоль локальной оси Y, м
///
double Y { get;}
}
}