I’m using the Box function with different colours to differentiate between panels in my figure.
The issue I’m having is that the Box hides the Axis3 lines and the axis contents. Is there a known way around this? I do remember reading somewhere in the docs that GLMakie has issues with transparency, but I’m not sure if that relates to this specific problem as the Axis is fine and the Axis3 is not.
CairoMakie output:
GLMakie output:
Code used:
f = Figure()
Box(f[1,1],color = (:red, 0.1))
ax = Axis(f[1,1],alignmode=Outside())
scatter!(ax,rand(100),rand(100))
Box(f[1,2],color = (:blue, 0.1))
ax = Axis3(f[1,2],alignmode=Outside())
scatter!(ax,rand(100),rand(100),rand(100))
f
hm weird but at -50000 the boxes aren’t rendered at all anymore. There’s a limit to how far back you can go, I thought it was -10,000. It’s because in OpenGL rendering there’s a near and far value outside of which nothing is rendered.