Set aspect ratio of Makie plot

I want to set the aspect ratio of a Makie.volume plot. It seems to be fixed by the number of voxels in each direction:

using Makie
volume(rand(32, 32, 64))

try

using Makie
volume(0..1, 0..1, 0..1, rand(32, 32, 64))

This will use a unit box - of course it will work with any other range :wink:

Dots in Julia are fun… Thanks!

how do you put two or more consecutive boxes of unit volume? namely, an array of boxes.

How to set the aspect ratio of a simple 2D plot? Also, is it possible to set the aspect ratio to be the data aspect ratio within a Makie recipe?

I learned that it is not possible currently to set axis attributes within recipes.