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
| [StructLayout(LayoutKind.Sequential, Pack = 1)] | |
| public struct RnHalfEdge | |
| { | |
| public byte Next; // Byte 0 | |
| public byte Twin; // Byte 1 | |
| public byte OriginVertex; // Byte 2 | |
| public byte Face; // Byte 3 | |
| } |