WorldViz User Forum

WorldViz User Forum (https://forum.worldviz.com/index.php)
-   Vizard (https://forum.worldviz.com/forumdisplay.php?f=17)
-   -   5DT left and right glove (https://forum.worldviz.com/showthread.php?t=994)

glepoura 02-05-2007 07:39 AM

5DT left and right glove
 
Is there an example of using a pair of gloves? I have been experimenting with the hand tutorial, but it includes a cfg file for the right hand only...

Best Regards,

George

Gladsomebeast 02-05-2007 02:57 PM

Use the .leftHand method to make the had object a left hand.

farshizzo 02-05-2007 02:58 PM

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)


glepoura 02-06-2007 04:41 AM

Great, Thank you,
GL


All times are GMT -7. The time now is 06:24 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC