This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct Adjacency | |
| { | |
| struct Vertex | |
| { | |
| // Vertices are shared by a variable number of edges. This indexes the global EdgeRef array. | |
| uint32_t edgeStartRef; | |
| uint32_t nbEdges; | |
| }; | |
| union EdgeRef |