Showing data points in 3D using animation
Source code name: "points_3D_animated.py"
Programming language: Python
Topic: Data arrays/P2D
DMelt Version 1.5. Last modified: 05/19/2016. License: Pro
https://datamelt.org/code/cache/points_3D_animated_8156.py
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


from jhplot import *

c1=HPlotXYZ("test",600,600);
c1.visible()
c1.setScale(0.9) # make box smaller 
h1=P2D()
for i in range(1000):
  h1.add(10+i,10+i*i,20*i-i)
c1.add(h1)
# c1.zoom(2)

c1.setTickDecimalAll(2)

c1.update()
c1.animate()
# c1.export("test1.png")




You see the box below because you did not login.