mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-23 12:34:03 +00:00
do_klenize now activates on IDEAL flag
This commit is contained in:
@@ -130,7 +130,7 @@ matrixitem genitem(const transmatrix& m1, const transmatrix& m2, int nsym) {
|
||||
return mi;
|
||||
}
|
||||
|
||||
bool do_kleinize() { return S3 >= OINF; }
|
||||
bool do_kleinize() { return S3 >= OINF || (cgflags & qIDEAL); }
|
||||
|
||||
EX hyperpoint kleinize(hyperpoint h) {
|
||||
if(GDIM == 2) return point3(h[0]/h[2], h[1]/h[2], 1);
|
||||
|
Reference in New Issue
Block a user