diff --git a/julia/Shape.jl b/julia/Shape.jl index be54ad0..8edaf25 100644 --- a/julia/Shape.jl +++ b/julia/Shape.jl @@ -18,3 +18,39 @@ function trypush!(S::Shape, t::Tuple{Int8, Int8, Int8}) return true end end + +function getCube() + return Shape( + { + (0, 0, 0) + }, + { + (0, 0, 0) + }, + [ + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0), + (0, 0, 0) + ]) +end