12 lines
124 B
C#
12 lines
124 B
C#
namespace TriangleNet.Geometry
|
|
{
|
|
public interface IEdge
|
|
{
|
|
int P0 { get; }
|
|
|
|
int P1 { get; }
|
|
|
|
int Label { get; }
|
|
}
|
|
}
|