Generated by DocFX

Class MeshCorner

Represents a corner of a given mesh face.

Inheritance
System.Object
MeshCorner
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Syntax
public class MeshCorner

Constructors

| Improve this Doc View Source

MeshCorner()

Initializes a new instance of the MeshCorner class.

Declaration
public MeshCorner()

Properties

| Improve this Doc View Source

Face

Gets the face the mesh corner belongs to.

Declaration
public MeshFace Face { get; }
Property Value
Type Description
MeshFace
| Improve this Doc View Source

HalfEdge

Gets or sets the corner's first half-edge.

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

Index

Gets or sets the index of the mesh corner.

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

Next

Gets the next corner.

Declaration
public MeshCorner Next { get; }
Property Value
Type Description
MeshCorner
| Improve this Doc View Source

Prev

Gets the previous corner.

Declaration
public MeshCorner Prev { get; }
Property Value
Type Description
MeshCorner
| Improve this Doc View Source

Vertex

Gets the mesh corner vertex.

Declaration
public MeshVertex Vertex { get; }
Property Value
Type Description
MeshVertex