View Single Post
  #3  
Old 02-05-2007, 02:58 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
If you use Vizard 3.0 then you simply do the following to convert a hand into a left hand:
Code:
myHand = hand.add(sensor)
myHand.leftHand()
For Vizard 2.5 you can do the following instead:
Code:
myHand = hand.add(sensor)
myHand.scale(-1,1,1)
myHand.disable(viz.CULL_FACE)
Reply With Quote