draco/docs/spec/connectivity.decoder.md
2017-10-03 18:28:26 -07: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 }