import matplotlib.pyplot as plt import matplotlib.animation as animation def update(coordinates): return [plt.scatter(x=coordinates[0], y=coordinates[1])] if __name__ ...
Problem with 3d animation using FuncAnimation and the mplot3d toolkit. Maybe this problem comes from not enough clarifications in the documentation. Following this it is presented a simplified version ...