View Single Post
  #1  
Old 11-13-2014, 04:24 PM
aaaa aaaa is offline
Member
 
Join Date: Nov 2014
Posts: 9
how to draw a single point

Excuse me, the code bellow can't draw a single dot:

import viz
viz.go()
viz.startLayer(viz.POINTS)
viz.vertex(0,1.8,1)
viz.endLayer()

the code bellow can draw two points:

import viz
viz.go()
viz.startLayer(viz.POINTS)
viz.vertex(0,1.8,1)
viz.vertex(0,1.7,1)
viz.endLayer()


My problem is how to draw a single dot.
Reply With Quote