Hi, I just started to learn Makie.jl package and am facing a problem. I would like to make a 3D plot with scatter() function. When I tried to plot two spheres, I got what I expected.
using Makie
x = [0, 1]
y = [0, 1]
z = [0, 1]
scatter(x, y, z)
However, when I tried to plot only one sphere, I got a 2D plot instead of a 3D plot.
using Makie
x = [0]
y = [0]
z = [0]
scatter(x, y, z)
Is there any way to plot only one sphere in a 3D plot?