Class MeshCorner
Represents a corner of a given mesh face.
Inheritance
System.Object
MeshCorner
Namespace: Paramdigma.Core.Geometry
Assembly: Paramdigma.Core.dll
Syntax
public class MeshCorner : object
Constructors
| Improve this Doc View SourceMeshCorner()
Initializes a new instance of the MeshCorner class.
Declaration
public MeshCorner()
Properties
| Improve this Doc View SourceFace
Gets the face the mesh corner belongs to.
Declaration
public MeshFace Face { get; }
Property Value
Type | Description |
---|---|
MeshFace |
HalfEdge
Gets or sets the corner's first half-edge.
Declaration
public MeshHalfEdge HalfEdge { get; set; }
Property Value
Type | Description |
---|---|
MeshHalfEdge |
Index
Gets or sets the index of the mesh corner.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Next
Gets the next corner.
Declaration
public MeshCorner Next { get; }
Property Value
Type | Description |
---|---|
MeshCorner |
Prev
Gets the previous corner.
Declaration
public MeshCorner Prev { get; }
Property Value
Type | Description |
---|---|
MeshCorner |
Vertex
Gets the mesh corner vertex.
Declaration
public MeshVertex Vertex { get; }
Property Value
Type | Description |
---|---|
MeshVertex |