Struct HalfEdge ​
Namespace: ValveResourceFormat.IO.ContentFormats.HalfEdgeMesh
Assembly: ValveResourceFormat.dll
Topology of one half edge.
csharp
public struct HalfEdgeProperties ​
Face ​
Face to which the half edge belongs.
csharp
public int Face { readonly get; set; }Property Value ​
Invalid ​
A half edge that points at nothing.
csharp
public static HalfEdge Invalid { get; }Property Value ​
NextEdge ​
Next half edge in the edge loop around the face to which this edge belongs.
csharp
public int NextEdge { readonly get; set; }Property Value ​
OppositeEdge ​
Half edge which runs the opposite direction from this edge.
csharp
public int OppositeEdge { readonly get; set; }Property Value ​
Vertex ​
Vertex at the end of the edge.
csharp
public int Vertex { readonly get; set; }
