Skip to content

Instantly share code, notes, and snippets.

[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
}