I also want to create many 3D plots. I will zoom and rotate each to same extent and then save them. How to do it?
How to translate and rotate by code?
What is range of value that we can supply in zoom!() line end?
using GLMakie
fig = Figure()
ax = LScene(fig[1,1], show_axis=false)
box = Rect3f(Vec3f(-1, -2, -0.5), Vec3f(2, 4, 1))
mesh!(ax, box, color = :steelblue)
zoom!(ax.scene, cameracontrols(ax.scene), 2)
update_cam!(ax.scene, cameracontrols(ax.scene))
display(fig, update=false)