This file contains 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
// type i | |
message DAMFile { | |
repeated Chunk chunk = 1; | |
repeated QuantizedChunk quantized_chunk = 2; | |
} | |
// type "o" | |
message Chunk { | |
required Vertices vertices = 1; | |
required Faces faces = 2; |