GeometriCS/interfaces/IBounded2.cs

14 lines
313 B
C#
Raw Permalink Normal View History

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