Hiding decorations in a 3D scene

Hi,

I’m using the wireframe plotting method to render some meshes and having success rotating the meshes as visual stimuli for psychophysics experiments. I’d like to hide the decorations of all axes so that the only thing visible in the scene is the wireframe. Is this possible? The only thing returned from a wireframe call is a Figure and LScene, neither of which I can find have any methods for hiding the axis and grids.

Thanks!

Oh nice, psychophysics with Makie! Well if you use LScene (which is just Scene in a wrapper) you should be able to do LScene(..., scenekw = (show_axis = false,)).

Or you use Axis3 http://makie.juliaplots.org/stable/makielayout/axis3.html, which might have the additional nice property for your experiments that one can’t rotate upside down, and you can’t zoom or pan so the object is always centered. In that case you would do hidedecorations! and hidespines! on the axis. You should probably also set viewmode = :fit so that rotation doesn’t change the apparent size.

1 Like