Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/MIConvexHull/ConvexHull/IVertex.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: 557 bytes
Line 
1
2namespace MIConvexHull
3{
4    /// <summary>
5    /// An interface for a structure with nD position.
6    /// </summary>
7    public interface IVertex
8    {
9        /// <summary>
10        /// Position of the vertex.
11        /// </summary>
12        double[] Position { get; set; }
13    }
14
15    /// <summary>
16    /// "Default" vertex.
17    /// </summary>
18    public class DefaultVertex : IVertex
19    {
20        /// <summary>
21        /// Position of the vertex.
22        /// </summary>
23        public double[] Position { get; set; }
24    }
25
26}
Note: See TracBrowser for help on using the repository browser.