Some more spec fixes.

This commit is contained in:
Frank Galligan 2017-10-03 18:28:26 -07:00
parent 147ce7212e
commit 6d9e6e3c1d
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ section is the header. The second section contains the metadata. This section is
#### EdgeBreaker Connectivity
* The EdgeBreaker connectivity section is composed of five sections. The first section is the connectivity header. The second section is the encoded EdgeBreaker symbol data. The third section is the encoded start face configuration data. The fourth section is the encoded split data.The fifth section is the attribute connectivity data.
* The EdgeBreaker connectivity section is composed of five sections. The first section is the connectivity header. The second section is the encoded EdgeBreaker symbol data. The third section is the encoded start face configuration data. The fourth section is the attribute connectivity data. The fifth section is the encoded split data.
![edgebreaker_connectivity](images/edgebreaker_connectivity.png)
@ -29,7 +29,7 @@ section is the header. The second section contains the metadata. This section is
#### Valence EdgeBreaker Connectivity
* The valence EdgeBreaker connectivity inserts two sections in between the start face data and the split data. The first section is the EdgeBreaker valence header. The second section is the context data for the valence prediction.
* The valence EdgeBreaker connectivity inserts two sections in between the attribute connectivity data and the split data. The first section is the EdgeBreaker valence header. The second section is the context data for the valence prediction.
![edgebreaker_valence_connectivity](images/edgebreaker_valence_connectivity.png)

View File

@ -7,7 +7,7 @@
void DecodeConnectivityData() {
if (encoder_method == MESH_SEQUENTIAL_ENCODING)
DecodeSequentialConnectivityData();
else
else if (encoder_method == MESH_EDGEBREAKER_ENCODING)
DecodeEdgebreakerConnectivityData();
}