WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 03-01-2011, 10:36 AM
miles miles is offline
Member
 
Join Date: Jan 2011
Posts: 21
The project I'm working on is very large, but I'll try to post every snippet I can find...

Also, I don't believe I explained the problem very well, so let me try to concisely re describe. When we set walkSensitivity to anything other than 1, and we try to rotate in the virtual environment, it gets to a certain angle and then "snaps" to another position. Here is some code:

Code:
# init class
	fixedTracker = viz.addGroup()
	link = viz.link(fixedTracker, viz.MainView)
	def updateView():
		x,y,z = tracker.getPosition()
		fixedTracker.setPosition(x, 1.2, z)
		fixedTracker.setEuler(tracker.getEuler())
	vizact.ontimer(0, updateView)
# experiment class
self.link = link
# world rotation and origin shifting:
			# x,z are manually rotated because coordinate 
			# system varies between link and world
			theta = radians(-1.0*self.worldrotation)
			rotatedx = originxshift*cos(theta) - originzshift*sin(theta)
			rotatedz = originxshift*sin(theta) + originzshift*cos(theta)
			
			# These transformations are applied using matrix math.  This then
			# allows us to change the link
			
			# This pre-Trans corrects the mainView to be at the position of the goggle, not the InterSense module
			# 	It is moved 45 cm vertically in the y direction and 23 cm forward in the z direction
			self.link.preTrans([0,0.045,0.23]) 
			
			# This postTrans may be getting re-written later when we had the lateralShfit
			self.link.postTrans([-1.0*rotatedx,0,-1.0*rotatedz],viz.LINK_POS_OP)
			self.link.postEuler([-1.0*self.worldrotation,0,0],viz.LINK_ORI_OP)
			
			
			# Walk sensitivity is also applied as a scalar matrix transformation
			if self.walkSensitivityPre <= 0:
				self.link.postScale([self.walkSensitivity,1,self.walkSensitivity],viz.LINK_POS_OP)
			else:
				self.link.postScale([self.walkSensitivityPre,1,self.walkSensitivityPre],viz.LINK_POS_OP)
				
			eyemodification = 0.0
			# Set the eyeheight
			viz.eyeheight(0.0)
		
			
			#lateralshift
			# Now apply the lateralShift as a transformation on the link
			# I'm not sure if this overwriters the previous postTransformation we define using the world rotation
			self.lateralShiftLink = self.link.postTrans([self.totalLateralShift,0,0])
Reply With Quote
  #2  
Old 03-02-2011, 01:06 PM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
To keep your postTrans from getting scaled by the later postScale, create the postScale first or change its priority argument. The order you create the pre/post operations matters.

Not sure what you mean by
Quote:
When I turn to a certain point, it moves back several degrees.
or how to fix it. Can you provide more description there?
__________________
Paul Elliott
WorldViz LLC
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
Real environment with virtual objects do interact CRI Vizard 4 05-27-2010 12:05 PM
Open Position: Virtual Environment Programmer aarset Announcements 0 05-31-2009 07:23 AM
Question about input from virtual keyboard. yyang Vizard 4 12-23-2008 12:25 PM
Getting a mirror to work in any environment Frank Verberne Vizard 5 03-27-2008 08:21 AM
Human FOV and VIrtual FOV giancamati Vizard 0 12-14-2006 03:33 AM


All times are GMT -7. The time now is 04:09 AM.


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