Class DelaunayPoint
Represents a point in a delaunay triangulation with adjacency information.
Inherited Members
Namespace: Paramdigma.Core.Spatial
Assembly: Paramdigma.Core.dll
Syntax
public class DelaunayPoint : Point2d
Constructors
| Improve this Doc View SourceDelaunayPoint(Point2d)
Initializes a new instance of the DelaunayPoint class from a Point2d instance.
Declaration
public DelaunayPoint(Point2d point)
Parameters
Type | Name | Description |
---|---|---|
Point2d | point | Point to create DelaunayPoint from. |
DelaunayPoint(Double, Double)
Initializes a new instance of the DelaunayPoint class from it's coordinates.
Declaration
public DelaunayPoint(double x, double y)
Parameters
Type | Name | Description |
---|---|---|
System.Double | x | X Coordinate. |
System.Double | y | Y Coordinate. |
Fields
| Improve this Doc View SourceAdjacentTriangles
List of adjacent triangles of this point.
Declaration
public readonly List<DelaunayTriangle> AdjacentTriangles
Field Value
Type | Description |
---|---|
List<DelaunayTriangle> |