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 Delaunay
Declaration
public DelaunayPoint(Point2d point)
Parameters
Type | Name | Description |
---|---|---|
Point2d | point | Point to create Delaunay |
DelaunayPoint(Double, Double)
Initializes a new instance of the Delaunay
Declaration
public DelaunayPoint(double x, double y)
Parameters
Type | Name | Description |
---|---|---|
System. |
x | X Coordinate. |
System. |
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<Delaunay |