View Single Post
  #2  
Old 07-21-2009, 09:46 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Instead of using viz.POINTS you can use viz.TRIANGLES and specify the position of each vertex. Example:
Code:
viz.startlayer(viz.TRIANGLES)		
viz.vertex(p1)
viz.vertex(p2)
viz.vertex(p3)
.
.
.
Reply With Quote