• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Paramdigma.Core
    • Convert
    • Intersect3D
    • Intersect3D.LineLineIntersectionResult
    • Intersect3D.LineLineIntersectionStatus
    • Intersect3D.LinePlaneIntersectionStatus
    • Intersect3D.RayFacePerimeterIntersectionStatus
    • Settings
  • Paramdigma.Core.Collections
    • Interval
    • Matrix<T>
  • Paramdigma.Core.Curves
    • Geodesics
    • LevelSets
  • Paramdigma.Core.Exceptions
    • UnsetGeometryException
  • Paramdigma.Core.Extensions
    • Lists
  • Paramdigma.Core.Geometry
    • BaseCurve
    • BasePoint
    • Box
    • Circle
    • Cylinder
    • Delaunay
    • InvalidCurveException
    • Line
    • Line2d
    • Mesh
    • MeshCorner
    • MeshEdge
    • MeshFace
    • MeshGeometry
    • MeshHalfEdge
    • MeshPoint
    • MeshTopology
    • MeshVertex
    • NurbsCurve
    • NurbsSurface
    • Plane
    • Point2d
    • Point3d
    • Point4d
    • Polyline
    • Polyline2d
    • Ray
    • Ray2d
    • Rectangle2d
    • Sphere
    • Torus
    • Vector2d
    • Vector3d
    • VectorNd
  • Paramdigma.Core.Geometry.Interfaces
    • ICurve
    • ISurface
    • IVector
  • Paramdigma.Core.IO
    • CsvReader
    • CsvWritter
    • OBJMeshData
    • ObjReader
    • ObjWritter
    • OffMeshData
    • OffReader
    • OffResult
    • OffWriter
  • Paramdigma.Core.LinearAlgebra
    • Complex
    • LeastSquaresLinearFit
    • Triplet
    • TripletData
  • Paramdigma.Core.Optimization
    • GradientDescent
    • GradientDescent.FitnessFunction
    • GradientDescentOptions
    • GradientDescentResult
    • KMeansCluster
    • KMeansClustering
    • KMeansClustering.IterationCompletedEventArgs
  • Paramdigma.Core.Spatial
    • DelaunayEdge
    • DelaunayPoint
    • DelaunayTriangle
    • Octree
    • PointCloud
    • PointCloudMember
    • QuadTree

Class DelaunayPoint

Represents a point in a delaunay triangulation with adjacency information.

Inheritance
System.Object
Point2d
DelaunayPoint
Inherited Members
Point2d.X
Point2d.Y
Point2d.Origin
Point2d.ToString()
Point2d.Equals(Object)
Point2d.GetHashCode()
Namespace: Paramdigma.Core.Spatial
Assembly: Paramdigma.Core.dll
Syntax
public class DelaunayPoint : Point2d

Constructors

| Improve this Doc View Source

DelaunayPoint(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.

| Improve this Doc View Source

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 Source

AdjacentTriangles

List of adjacent triangles of this point.

Declaration
public readonly List<DelaunayTriangle> AdjacentTriangles
Field Value
Type Description
List<DelaunayTriangle>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX