signatures were still not correct

This commit is contained in:
=
2024-02-08 12:12:58 +01:00
parent 4446fe341c
commit cce1db0714

View File

@@ -16,32 +16,32 @@ function neighbors(x::Int, y::Int, z::Int)
end
function orient_tuple(t::Coord, o::Int)
return _shift_tuple(_flip_tuple(_mirror_tuple(t..., o-1)...)...)
return _shift_tuple(_flip_tuple(_mirror_tuple(t, o-1)...)...)
end
function _shift_tuple(a::Int, b::Int, c::Int, o::Int)
function _shift_tuple(t::Coord, o::Int)
funcs = [
(x, y, z) -> (x, y, z),
(x, y, z) -> (y, z, x),
(x, y, z) -> (z, x, y),
]
return (funcs[o%3+1](a, b, c), div(o, 3))
return (funcs[o%3+1](t...), div(o, 3))
end
function _flip_tuple(a::Int, b::Int, c::Int, o::Int)
function _flip_tuple(t::Coord, o::Int)
funcs = [
(x, y, z) -> (x, y, z),
(x, y, z) -> (-x, -y, z),
(x, y, z) -> (-x, y, -z),
(x, y, z) -> (x, -y, -z)
]
return (funcs[o%4+1](a, b, c), div(o, 4))
return (funcs[o%4+1](t...), div(o, 4))
end
function _mirror_tuple(a::Int, b::Int, c::Int, o::Int)
function _mirror_tuple(t::Coord, o::Int)
funcs = [
(x, y, z) -> (x, y, z),
(x, y, z) -> (-z, -x, -y)
]
return (funcs[o%2+1](a, b, c), div(o, 2))
return (funcs[o%2+1](t...), div(o, 2))
end