1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 18:54:48 +00:00

removed operator == (already defined for arrays)

This commit is contained in:
Zeno Rogue 2019-08-10 00:02:27 +02:00
parent 2cf6abb273
commit 9a84d94282

View File

@ -719,11 +719,6 @@ EX transmatrix mzscale(const transmatrix& t, double fac) {
EX transmatrix pushone() { return xpush(sphere?.5 : 1); }
bool operator == (hyperpoint h1, hyperpoint h2) {
for(int i=0; i<MDIM; i++) if(h1[i] != h2[i]) return false;
return true;
}
// rotation matrix in R^3
EX hyperpoint mid3(hyperpoint h1, hyperpoint h2, hyperpoint h3) {