• 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 MeshEdge

Edge class representing a full edge of a half-edge mesh. A full edge contains 2 half-edges.

Inheritance
System.Object
MeshEdge
Namespace: Paramdigma.Core.Geometry
Assembly: Paramdigma.Core.dll
Syntax
public class MeshEdge : object

Constructors

| Improve this Doc View Source

MeshEdge()

Initializes a new instance of the MeshEdge class.

Declaration
public MeshEdge()

Properties

| Improve this Doc View Source

HalfEdge

Gets or sets the half-edge linked to this edge.

Declaration
public MeshHalfEdge HalfEdge { get; set; }
Property Value
Type Description
MeshHalfEdge
| Improve this Doc View Source

Index

Gets or sets the index of this Mesh Edge.

Declaration
public int Index { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

OnBoundary

Gets a value indicating whether the mesh edge lies on a boundary.

Declaration
public bool OnBoundary { get; }
Property Value
Type Description
System.Boolean

Methods

| Improve this Doc View Source

AdjacentEdges()

Gets the adjacent edges of this edge.

Declaration
public List<MeshEdge> AdjacentEdges()
Returns
Type Description
List<MeshEdge>
| Improve this Doc View Source

AdjacentFaces()

Gets the adjacent faces of this edge.

Declaration
public List<MeshFace> AdjacentFaces()
Returns
Type Description
List<MeshFace>
| Improve this Doc View Source

AdjacentVertices()

Gets the adjacent vertices of this given edge.

Declaration
public List<MeshVertex> AdjacentVertices()
Returns
Type Description
List<MeshVertex>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX