View Single Post
  #2  
Old 11-13-2014, 05:48 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You will need to disable culling on the object, since a single point will result in a infinitely small bounding box. Try the following code:
Code:
import viz
viz.go()
viz.startLayer(viz.POINTS)
viz.vertex(0,1.8,1)
points = viz.endLayer()
points.disable(viz.CULLING)
Reply With Quote