From 993ee1fd0ca82cf824faffeb40e64bcc1bdf99a2 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 8 Feb 2024 14:01:09 +0100 Subject: [PATCH] _mirror_tuple WAS THE CULPRIT --- julia/tuple_tools.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia/tuple_tools.jl b/julia/tuple_tools.jl index e1850c4..ee00ff5 100644 --- a/julia/tuple_tools.jl +++ b/julia/tuple_tools.jl @@ -41,7 +41,7 @@ end function _mirror_tuple(t::Coord, o::Int) funcs = [ (x, y, z) -> (x, y, z), - (x, y, z) -> (-z, -x, -y) + (x, y, z) -> (-z, -y, -x) ] return (funcs[o%2+1](t...), div(o, 2)) end