Struct FaceHandle ​
Namespace: ValveResourceFormat.IO.ContentFormats.HalfEdgeMesh
Assembly: ValveResourceFormat.dll
A face of a specific mesh, addressed through the mesh it came from.
csharp
public readonly record struct FaceHandle : IEquatable<FaceHandle>Implements ​
Properties ​
Edge ​
Gets or sets one of the half edges bordering this face.
csharp
public HalfEdgeHandle Edge { get; set; }Property Value ​
Index ​
Index of the face within the mesh.
csharp
public int Index { get; }Property Value ​
Invalid ​
A handle that addresses no face.
csharp
public static FaceHandle Invalid { get; }Property Value ​
IsValid ​
Whether the handle still addresses a live face.
csharp
public bool IsValid { get; }Property Value ​
Methods ​
ToString() ​
Returns the fully qualified type name of this instance.
csharp
public override string ToString()Returns ​
The fully qualified type name.

