Rev | Line | |
---|
[9730] | 1 |
|
---|
| 2 | namespace 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.