View Single Post
  #3  
Old 11-24-2014, 03:48 AM
johnallen johnallen is offline
Member
 
Join Date: Nov 2013
Location: Canterbury, UK
Posts: 36
adjusting eyeheight when using vizconnect

Thanks for the pointer Jeff.

To do it dynamically I ended up doing:

Code:
vizconnect.go('my_vizconnect.py')
gTracker = vizconnect.getTracker('head_tracker')
gLink = gTracker.getLink()
# now apply an offset to the height
gLink.postTrans([0,-0.25,0], target=viz.LINK_POS_OP)


Quote:
Originally Posted by Jeff View Post
If the display is parented to another object in Vizconnect, then the link will override the viewpoint command in Vizard. From Vizconnect, you can add a post trans offset in the Offsets dialog for the PPT Tracker to adjust the height. Take a look at the Displays and Trackers tutorial for an example using offsets.
Reply With Quote