1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 06:33:19 +00:00

fixed 'hyperplane' to 'hyperbolic plane'

This commit is contained in:
Zeno Rogue 2018-03-08 20:23:57 +01:00
parent f8c83a694a
commit 0cf41bb09c

View File

@ -262,7 +262,7 @@ transmatrix ypush(ld alpha) {
return T;
}
// rotate the hyperplane around C0 such that H[1] == 0 and H[0] >= 0
// rotate the hyperbolic plane around C0 such that H[1] == 0 and H[0] >= 0
transmatrix spintox(const hyperpoint& H) {
transmatrix T = Id;
ld R = sqrt(H[0] * H[0] + H[1] * H[1]);