1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-29 16:57:56 +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

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