From 930442b94febe11fac6e4dcdceb4b7163a52bbd1 Mon Sep 17 00:00:00 2001 From: Thompson Lee Date: Thu, 4 Aug 2016 09:53:21 -0400 Subject: [PATCH] Text glitch. Re-encoding to the correct format. --- source/maths/mtx_multiply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/maths/mtx_multiply.c b/source/maths/mtx_multiply.c index 6f5e1be..8d69cb4 100644 --- a/source/maths/mtx_multiply.c +++ b/source/maths/mtx_multiply.c @@ -2,7 +2,7 @@ void Mtx_Multiply(C3D_Mtx* restrict out, const C3D_Mtx* a, const C3D_Mtx* b) { - // http://www.wolframalpha.com/input/?i={{a,b,c,d},{e,f,g,h},{i,j,k,l},{m,n,o,p}}{{α,β,γ,δ},{ε,θ,ι,κ},{λ,μ,ν,ξ},{ο,Ï€,Ï�,σ}} + // http://www.wolframalpha.com/input/?i={{a,b,c,d},{e,f,g,h},{i,j,k,l},{m,n,o,p}}{{α,β,γ,δ},{ε,θ,ι,κ},{λ,μ,ν,ξ},{ο,π,ρ,σ}} int i, j; for (j = 0; j < 4; ++j) for (i = 0; i < 4; ++i)