Hi,
the examples from the Makie documentation show how to build a cube (using volume), but if I try to update the scene with a new one, they overlap. Any ideas on how to solve this. I want to create an array of cubes.
using Makie
r = LinRange(-4, 4, 100); # our value range, cube centered at 0
r1 = LinRange(5, 8, 100); # our value range, cube centered at 6
ρ(x, y, z) = exp(-(abs(0.1*x^2))) # function (charge density)
scene = Scene(backgroundcolor = :black)
volume!(
scene,
r, r, r, # coordinates to plot on
ρ, # charge density (functions as colorant)
algorithm = :mip # maximum-intensity-projection
)
volume!(
scene,
r1, r1, r1, # coordinates to plot on
ρ, # charge density (functions as colorant)
algorithm = :mip # maximum-intensity-projection
)
scene[Axis].names.textcolor = :white # let axis labels be seen on dark background
scene