I would like to pass a vector of 3D points:
v = Vector{Point3f0}(undef, 10)
to scatter plot. Do I have to separate it into x, y and z columns first and call:
scene = scatter(x, y, z, color = :red, markersize = 0.02)
or there is a simpler way?
BTW, why name the type Point3f0
instead of Point3f
?
4 posts - 3 participants