Files
2026-03-04 10:03:45 +08:00

12 lines
124 B
C#

namespace TriangleNet.Geometry
{
public interface IEdge
{
int P0 { get; }
int P1 { get; }
int Label { get; }
}
}