Thread: vizppt.dls
View Single Post
  #1  
Old 07-07-2004, 03:27 PM
jebber jebber is offline
Member
 
Join Date: Jul 2004
Posts: 3
vizppt.dls

In the code below, what do lines 4 and 5 mean? What are the significance of the numbers and the positions of those numbers? Why is it (4.002) and why (5,",5)? How/why do they affect the last line (12), viz.eyesight(1.7)?


1 if viz.get(viz.TRACKER):
2 v = viz.add('intersense.dls')
3 pos = viz.add('vizppt.dls')
4 pos.command(4.002)
5 pos.command(5,'',5)
6 viz.tracker()
7 v.reset()
8 tracking = 1
9 else:
10 tracking = 0
11
12 viz.eyeheight(1.7)

Jeb
Reply With Quote