View Single Post
  #2  
Old 03-15-2006, 03:29 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

Sorry, I don't understand exactly what you are asking for. Are you talking about creating triangles? If so, then you can create them like so:
Code:
viz.startlayer(viz.TRIANGLES)
viz.vertex(0,0,0)
viz.vertex(0,1,0)
viz.vertex(1,0,0)
.
.
.
viz.endlayer()
Reply With Quote