I tried to draw two boxes in one scene. Both should be centered, but it appears, that there is something else going on:
using Makie
scene = mesh(Rect3D(((1,1,0), (-1,-1,0.1))), color = "green")
mesh!(scene, Rect3D(((.25,.25,0), (-.25,-.25,0.11))), color = "yellow")
I’d like the yellow mesh to be in the center of the green one.
Am I right in the assumtion, that Rect3D(((1,1,0), (-1,-1,0.1)))
draws a box from (1,1,0)
to (-1,-1,0.1)
?