Files
Triangle.NET/Triangle.NET/Triangle/Geometry/IEdge.cs
T
SND\wo80_cp 4569c7728f Breaking changes for geometry entities:
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
2015-11-24 20:03:05 +00:00

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