using StructureHelperCommon.Models.Shapes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Primitives { public interface IHasDivisionSize { /// IDivisionSize DivisionSize { get; } /// /// Shows if point is located inside shape /// /// /// bool IsPointInside(IPoint2D point); } }