Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/MIConvexHull/Triangulation/TriangulationCell.cs @ 9730

Last change on this file since 9730 was 9730, checked in by ascheibe, 11 years ago

#1886 added a library that calculates convex hulls

File size: 866 bytes
RevLine 
[9730]1namespace MIConvexHull
2{
3    /// <summary>
4    /// Representation of the triangulation cell. Pretty much the same as ConvexFace,
5    /// just wanted to distinguish the two.
6    /// To declare your own face type, use class Face : DelaunayFace(of Vertex, of Face)
7    /// </summary>
8    /// <typeparam name="TVertex"></typeparam>
9    /// <typeparam name="TCell"></typeparam>
10    public abstract class TriangulationCell<TVertex, TCell> : ConvexFace<TVertex, TCell>
11        where TVertex : IVertex
12        where TCell : ConvexFace<TVertex, TCell>
13    {
14
15    }
16
17    /// <summary>
18    /// Default triangulation cell.
19    /// </summary>
20    /// <typeparam name="TVertex"></typeparam>
21    public class DefaultTriangulationCell<TVertex> : TriangulationCell<TVertex, DefaultTriangulationCell<TVertex>>
22        where TVertex : IVertex
23    {
24    }
25}
Note: See TracBrowser for help on using the repository browser.