View Single Post
  #2  
Old 11-17-2014, 05:36 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You can change the vertex color of the points:

Code:
import viz
viz.go()

viz.startLayer(viz.POINTS)
viz.vertexColor(0.5,0.5,0.5)
viz.vertex(0,0,1)
viz.vertex(0,0.5,1)
aa=viz.endLayer(pos=[0,1.8,3])
Reply With Quote