4569c7728f
Removed a bunch of properties (ID related) Renamed 'Boundary' and 'Region' properties to 'Label' git-svn-id: https://triangle.svn.codeplex.com/svn@77679 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
27 lines
738 B
C#
27 lines
738 B
C#
// -----------------------------------------------------------------------
|
|
// <copyright file="IEdge.cs" company="">
|
|
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
|
|
// </copyright>
|
|
// -----------------------------------------------------------------------
|
|
|
|
namespace TriangleNet.Geometry
|
|
{
|
|
public interface IEdge
|
|
{
|
|
/// <summary>
|
|
/// Gets the first endpoints index.
|
|
/// </summary>
|
|
int P0 { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the second endpoints index.
|
|
/// </summary>
|
|
int P1 { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a general-purpose label.
|
|
/// </summary>
|
|
int Label { get; }
|
|
}
|
|
}
|