HalfEdgeHandle Handle { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Handle property of the MeshEdge struct provides access to the HalfEdgeHandle associated with this mesh edge. This handle is a reference to the underlying half-edge data structure used in the mesh representation.

Usage

Use the Handle property to retrieve the HalfEdgeHandle for operations that require direct manipulation or querying of the mesh's half-edge data structure. This property is marked with the [Hide] and [JsonIgnore] attributes, indicating it is not intended for display in the editor or serialization.

Example

// Example of accessing the Handle property
MeshEdge meshEdge = new MeshEdge();
HalfEdgeMesh.HalfEdgeHandle edgeHandle = meshEdge.Handle;

// Use edgeHandle for further operations
// Note: Ensure that the meshEdge is properly initialized before accessing the Handle