Makie.jl perspective camera

I know Makie is capable of perspective 3D plots, but can’t find it documented anywhere.
In a scene like the following, how do I make the camera projection type perspective instead of orthographic?

using GLMakie
fig = Figure()
ax = fig[1,1] = Axis3(fig)
lines!(ax, rand(3, 40))

https://makie.juliaplots.org/stable/examples/layoutables/axis3/#perspective_or_orthographic_look

1 Like