draco/docs/spec/connectivity.decoder.md
2020-03-03 10:46:47 -08:00

16 lines
308 B
Markdown

## Connectivity Decoder
### DecodeConnectivityData()
~~~~~
void DecodeConnectivityData() {
if (encoder_method == MESH_SEQUENTIAL_ENCODING)
DecodeSequentialConnectivityData();
else if (encoder_method == MESH_EDGEBREAKER_ENCODING)
DecodeEdgebreakerConnectivityData();
}
~~~~~
{:.draco-syntax }