mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-09 15:39:55 +00:00
fixup to rename to twist
This commit is contained in:
parent
4c3a348666
commit
57759e95bc
4
hyper.h
4
hyper.h
@ -148,7 +148,7 @@ void addMessage(string s, char spamtype = 0);
|
||||
#define nih (among(cgclass, gcNIH, gcSolN))
|
||||
#define nil (cgclass == gcNil)
|
||||
#define sl2 (cgclass == gcSL2)
|
||||
#define rotspace (geometry == gRotSpace)
|
||||
#define gtwisted (geometry == gTwistedProduct)
|
||||
#define hyperbolic (cgclass == gcHyperbolic)
|
||||
#define nonisotropic (among(cgclass, gcSol, gcSolN, gcNIH, gcSL2, gcNil))
|
||||
#define translatable (euclid || nonisotropic)
|
||||
@ -167,6 +167,8 @@ void addMessage(string s, char spamtype = 0);
|
||||
#define embedded_plane (WDIM == 2 && GDIM == 3)
|
||||
/** the actual map is product, not just the graphics */
|
||||
#define mproduct (gproduct && !embedded_plane)
|
||||
/** the actual map is twisted, not just the graphics */
|
||||
#define mtwisted (gtwisted && !embedded_plane)
|
||||
/** the actual map is product, not just the graphics */
|
||||
#define meuclid (geom3::mgclass() == gcEuclid)
|
||||
#define msphere (geom3::mgclass() == gcSphere)
|
||||
|
@ -3047,8 +3047,8 @@ EX namespace nisot {
|
||||
#endif
|
||||
if(mproduct) return new product::hrmap_product;
|
||||
#if MAXMDIM >= 4
|
||||
if(nil) return new nilv::hrmap_nil;
|
||||
if(mhybrid) return new rots::hrmap_rotation_space;
|
||||
if(nil) return new nilv::hrmap_nil;
|
||||
#endif
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user