Files
PolyCubeCounting/julia/ImmutableOrientedShape.jl
Maxime Vorwerk d836aa5c1a ...
2023-08-29 14:53:25 +02:00

11 lines
242 B
Julia

using XXhash
struct ImmutableOrientedShape
cubes::Vector{Tuple{Int64, Int64, Int64}}
hash::UInt
end
function getImmutableOrientedShape(S::Shape)
shape = ImmutableOrientedShape(S.orderedLists[1], hashList(S.orderedLists[1]))
end