Interface ITriangulation<TVertex, TCell>
Simple interface to unify different types of triangulations in the future.
Namespace: NWH.DWP2.MiConvexHull
Assembly: NWH.DWP2.dll
Syntax
public interface ITriangulation<TVertex, TCell> where TVertex : IVertex where TCell : TriangulationCell<TVertex, TCell>, new()
Type Parameters
| Name | Description |
|---|---|
| TVertex | The type of the t vertex. |
| TCell | The type of the t cell. |
Properties
| Edit this page View SourceCells
Triangulation simplexes. For 2D - triangles, 3D - tetrahedrons, etc ...
Declaration
IEnumerable<TCell> Cells { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<TCell> | The cells. |