i got this bunch of code :
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
from matplotlib import animation
%matplotlib inline
plt.ion()
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.view_init(azim=270, elev=90)
ax.set_xlabel('X axis')
ax.set_ylabel('Y axis')
ax.set_zlabel('Z axis')
X = -df['x']
Y = -df['y']
Z = -df['z']
ax.scatter(X,Y,Z, color = 'red')
plt.draw()
this code gives this plot:
I would like to set objects over the point clouds like this:
is this possible? Does anyone got a proper solution for that?
I would be grateful for any help!