x = [2 .* (i/3) .* cos(i) for i in range(0, stop = 4pi, length = 30)]
y = [2 .* (i/3) .* sin(i) for i in range(0, stop = 4pi, length = 30)]
z = range(0, stop = 5, length = 30)
a=meshscatter(x, y, z, markersize = 0.5, color = to_colormap(:blues, 30))
scene = Scene()
display(scene)
‘’’
I found a case from Makie.jl,which web site is http://juliaplots.org/MakieReferenceImages/gallery//3d/index.html
The Makie.jl’s web site is https://makie.juliaplots.org/stable/gallery
But when I run this code, it didn’t show the picture.How could show the picture?