1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-20 23:50:27 +00:00

gp:: conj() function for gp::loc

This commit is contained in:
Zeno Rogue 2021-07-21 10:49:09 +02:00
parent 65065c7e69
commit 4425556ebc

View File

@ -48,6 +48,11 @@ EX namespace gp {
return loc(first/i, second/i); return loc(first/i, second/i);
} }
loc conj() {
if(S3 == 4) return loc(first, -second);
return loc(first+second, -second);
}
}; };
struct local_info { struct local_info {