From 37803433676f6c6cdf79715fd6df6740079228d8 Mon Sep 17 00:00:00 2001 From: ? Date: Tue, 26 Feb 2019 00:41:29 +0100 Subject: [PATCH] fixed 2D binary tiling --- hyperpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperpoint.cpp b/hyperpoint.cpp index fc7d37ad..0958c7a1 100644 --- a/hyperpoint.cpp +++ b/hyperpoint.cpp @@ -306,7 +306,7 @@ transmatrix matrix3(ld a, ld b, ld c, ld d, ld e, ld f, ld g, ld h, ld i) { #if MAXDIM==3 return transmatrix {{{a,b,c},{d,e,f},{g,h,i}}}; #else - return transmatrix {{{a,b,0,c},{d,e,0,f},{0,0,1,0},{g,h,0,i}}}; + return transmatrix {{{a,b,c,0},{d,e,f,0},{g,h,i,0},{0,0,0,1}}}; #endif }