mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-04-24 06:39:57 +08:00
16 lines
308 B
Markdown
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 }
|