WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 07-16-2016, 03:47 AM
rajnishv rajnishv is offline
Member
 
Join Date: Jan 2016
Location: Kalina,Sanatcruz(East),Mumbai,Maharashtra,India
Posts: 94
Question Regarding getting yaw, pitch, roll separately frm 'vizconnect.getEuler('trac') functn

Hi Jeff,
I need each of the euler values separately from
vizconnect.getTracker('HeadTracker').getEuler():
I have managed to get the euler values of the head tracker by the code thrugh vizconnect.
Code:
#------------------------------Vizrad Code Start---------------------------------#

def restrictRollFromHeadTracker():
headTracker=vizconnect.getTracker('dtrackheadtrack er')
eulrHeadTracker=headTracker.getEuler()
print 'the position and euler are',eulrHeadTracker
vizact.ontimer(0,restrictRollFromHeadTracker)

#------------------------------Vizrad Code End---------------------------------#

But i need each of the values 'separately' such as..yaw,pitch and roll and want to store into 3 separate variables and then want to apply on the tracker node with some different values.

I am not able to found the code or command to deal with it.

Waiting for ur reply.
Thanx & Regards!!!

Mr.Rajnish Vishwakarma
Software Developer
at
Xenium Digital Pvt. Ltd,Mumbai
(Customer of world viz)
Reply With Quote
  #2  
Old 07-16-2016, 03:58 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The getEuler() command return a list with yaw, pitch, and roll. You can get the individual values directly:

Code:
yaw,pitch,roll = vizconnect.getTracker('HeadTracker').getEuler()
Or first save the list and then get the individual values:

Code:
ori = vizconnect.getTracker('HeadTracker').getEuler()
yaw = ori[0]
pitch = ori[1]
roll = ori[2]
Reply With Quote
  #3  
Old 07-16-2016, 04:00 AM
rajnishv rajnishv is offline
Member
 
Join Date: Jan 2016
Location: Kalina,Sanatcruz(East),Mumbai,Maharashtra,India
Posts: 94
Sorry Jeff,
To disturb you.
Thanx for the reply.
I got it when i got an error that getEuler returs a list and i managed it to store it.
Thank you for ur reply
Reply With Quote
  #4  
Old 07-16-2016, 04:19 AM
rajnishv rajnishv is offline
Member
 
Join Date: Jan 2016
Location: Kalina,Sanatcruz(East),Mumbai,Maharashtra,India
Posts: 94
Jeff,
One more query ,i want to re-apply the same yaw ,pitch to the head tracker but i have to restrict the roll value of the head tracker so that roll doesn't work using the code,but i m not able to get it:

#----------Start----------------
def restrictRollFromTracker():
headTracker=vizconnect.getTracker('headtracker')
eulrHeadTracker=headTracker.getEuler()
yaww=eulrHeadTracker[0]
pitchh=eulrHeadTracker[1]
headTracker.getNode3d().setEuler([yaww,pitchh,0],viz.ABS_PARENT )

vizact.ontimer(0,restrictRollFromTracker)


But i m not able to retrict the roll value of the tracker again.Pls help.
#-----End---------------



Waiting for ur reply.
Thanx & Regards!!!

Mr.Rajnish Vishwakarma
Software Developer
at
Xenium Digital Pvt. Ltd,Mumbai
(Customer of world viz)
Reply With Quote
  #5  
Old 07-16-2016, 04:49 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
In this case you don't need to get the yaw, pitch, and roll values. Just get a handle to the tracker link and use the link.setEuler operator:

Code:
trackerLink = vizconnect.getTracker('headtracker').getLink()
#Keep the incoming yaw and pitch, but zero the roll
trackerLink.setEuler([None,None,0])
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
The problem of tracker using via VRPN _kj_ Vizard 2 08-13-2009 12:03 AM
question about yaw, pitch, roll TunTun Vizard 2 05-23-2007 12:46 PM


All times are GMT -7. The time now is 04:23 PM.


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