View Single Post
  #1  
Old 07-14-2006, 01:53 PM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
Clustering in Vizard 3 beta 1

To make the Vizard 3 beta 1 cluster client use the Vizard 3 executables, you must set the VIZARD25_PATH environment variable to point to the Vizard 3 installation directory.

Also, the viz.clusteroffset() commands have been removed. Please replace with the following code:

Code:
#old stuff
#viz.clusteroffset(-50, 0, 0) 

#new stuff
# Modify left client for 50 counter-clockwise rotation
viz.pushmask(viz.CLIENT1)
trans = vizmat.Transform()
trans.setEuler( -50, 0, 0 )
viz.MainWindow.setViewOffset( trans )
viz.popmask()
__________________
Paul Elliott
WorldViz LLC
Reply With Quote