GeometriCS/interfaces/IBounded2.cs
Zdeněk Borovec a23ea94db4 Line intersections
Decided to revert to Vectors being structs after reconsidering the full implications.
2024-04-19 00:42:56 +02:00

13 lines
313 B
C#

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; }
}
}