namespace GeometriCS { /// /// Interface for finite (bounded) entities in two-dimensional space. /// public interface IBounded2d { /// /// Extents of the bounded entity. /// public Extents2d Extents { get; } } }