#The following script will create an ordered 3D pointcloud
from arrlib import * from random import * cloud = xyzwvfMat(10,10) for r in range(10): for c in range(10): cloud[r*10+c] = r-5,c-5,random()-0.5,0,0 SetImageMatr('Image',cloud)