I'm trying to make cubes that are next to one another in a grid like pattern. I figured the best way to do this would be to use nodes and then just place my drawings there. I found from this post how to write a custom command to make arbitrary cubes (in a formatting I want). What I would like to end up with is something like
\begin{tikzpicture}
\node[\tikzcube{3}{1}] (c0) {};
\node[\tikzcube{4}{1}, right=10cm] (c1) {};
\node[\tikzcube{2}{1}, below=10cm] (c2) {};
... so on ...
Where \tikzcube is a custom command that performs drawings (as seen in the linked post).
