|
|
Thread Tools | Rate Thread | Display Modes |
#1
|
|||
|
|||
Can you link the position of a tracker to the orientation of an object?
I love the fact that you can link a sensor to an object, saving the pain and computational time of writing a callback on every frame that does the same thing. But how flexible is the link? I would like the the rotation of an object (specifically the yaw) to be linked to the position of a head-tracker (specifically the X-Z position relative to the object). Is there a simple way to do this, or do I need to use code like:
Code:
viz.callback(viz.UPDATE_EVENT,onUpdate) def onUpdate(event): pos = tracker.getPosition() object.setEuler(someFunction(pos),0,0) |
#2
|
|||
|
|||
The link objects support basic transformations on the incoming data. If you need to perform some custom calculation on the data then you have to manually do it per frame, as you have already done.
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
retrieve Object names | Geoffrey | Vizard | 11 | 12-11-2009 04:26 AM |
Flock of Birds (Only Position Tracking working? No Orientation?) | TheLostBrain | Vizard | 6 | 05-10-2008 08:39 AM |
Getting object position in screen coordinates | v-Salik | Vizard | 1 | 10-19-2007 03:41 PM |
rotate to object | jargon | Vizard | 1 | 08-08-2005 12:20 PM |
Linking avatar 'bones' to a position tracker. | zachhendershot | Vizard | 3 | 11-19-2003 09:26 PM |