using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
///
/// Implement center of geometry shape on 2D plane
///
public interface IHasCenter2D
{
///
/// 2D point of center
///
IPoint2D Center {get;set;}
}
}