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
#if CAP_BT
else if(bt::in())
spf = "6,[6,7],7";
else if(bt::in()) switch(geometry) {
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
else if(BITRUNCATED)
spf = spf + "," + its(S6) + "," + its(S6);