1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

missing from elliptic fix

This commit is contained in:
Zeno Rogue 2018-05-20 15:16:38 +02:00
parent 9286134502
commit 308a51bbd9

View File

@ -255,6 +255,9 @@ const transmatrix MirrorX = {{{-1,0,0}, {0,1,0}, {0,0,1}}};
// rotate by PI
const transmatrix pispin = {{{-1,0,0}, {0,-1,0}, {0,0,1}}};
// central symmetry
const transmatrix centralsym = {{{-1,0,0}, {0,-1,0}, {0,0,-1}}};
// rotate by alpha degrees
transmatrix spin(ld alpha) {
transmatrix T = Id;