mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-20 11:54:48 +00:00
gp:: conj() function for gp::loc
This commit is contained in:
parent
65065c7e69
commit
4425556ebc
@ -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);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user