1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-29 13:07:40 +00:00

Panini projection

This commit is contained in:
Zeno Rogue
2020-11-01 21:20:54 +01:00
parent 2cc06e39ba
commit 6513b3a87e
6 changed files with 104 additions and 17 deletions

View File

@@ -154,7 +154,7 @@ void display(const glmatrix& m) {
printf("\n");
}
glmatrix operator * (glmatrix m1, glmatrix m2) {
EX glmatrix operator * (glmatrix m1, glmatrix m2) {
glmatrix res;
for(int i=0; i<4; i++)
for(int j=0; j<4; j++) {