1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-15 21:27:10 +00:00

3d:: pseudohept specified

This commit is contained in:
?
2019-02-27 14:40:56 +01:00
committed by Zeno Rogue
parent a1ca5b2995
commit b8913b39fd
4 changed files with 26 additions and 1 deletions

View File

@@ -1287,7 +1287,15 @@ bool pseudohept(cell *c) {
#if CAP_IRR
if(IRREGULAR) return irr::pseudohept(c);
#endif
if(binarytiling) return c->type & c->master->distance & 1;
#if CAP_BT
if(binarytiling) return binary::pseudohept(c);
#endif
#if MAXDIM == 4
if(DIM == 3) {
if(euclid) return euclid3::pseudohept(c);
if(sphere) return sphere3::pseudohept(c);
}
#endif
#if CAP_ARCM
if(archimedean) return arcm::pseudohept(c);
#endif