Thread: Left Hand
View Single Post
  #2  
Old 02-01-2008, 10:05 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
If you are using the hand module, then you can use the following code:
Code:
import hand
h = hand.add(sensor)

#Display as left hand
h.leftHand()
If you are manually loading the hand.cfg file, then you can us the following code:
Code:
hand = viz.add('hand.cfg')
hand.scale(-1,1,1)
hand.enable(viz.FLIP_POLYGON_ORDER)
Reply With Quote