fixed 'faces per vertex' display for gBinary4 and gTernary

This commit is contained in:
Zeno Rogue 2019-12-27 01:44:52 +01:00
parent 07bca8059d
commit 7d96ea9c54
1 changed files with 6 additions and 2 deletions

View File

@ -611,8 +611,12 @@ EX void showEuclideanMenu() {
} }
#endif #endif
#if CAP_BT #if CAP_BT
else if(bt::in()) else if(bt::in()) switch(geometry) {
spf = "6,[6,7],7"; case gBinaryTiling: spf = "6,[6,7],7"; break;
case gBinary4: spf = "5,5,5[,5]"; break;
case gTernary: spf = "6,6,6[,6]"; break;
default: spf = "?"; break;
}
#endif #endif
else if(BITRUNCATED) else if(BITRUNCATED)
spf = spf + "," + its(S6) + "," + its(S6); spf = spf + "," + its(S6) + "," + its(S6);