WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 02-04-2018, 10:48 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Here's an example that prints out the viewpoint velocity each frame:

Code:
import viz
viz.go()

viz.addChild('piazza.osgb')

lastPos = [0,0,0]
def calculateVelocity():
	global lastPos
	pos = viz.MainView.getPosition()
	distance = vizmat.Distance(lastPos,pos)
	velocity = distance/viz.getFrameElapsed()
	print velocity
	lastPos = pos
	
vizact.onupdate(0,calculateVelocity)
Reply With Quote
Reply

Tags
omni, velocity


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
Information associated with a model roobert Vizard 7 08-01-2014 09:34 AM
MainView velocity depending on joystick deflection 4711 Vizard 3 01-17-2014 12:50 PM
velocity shader subbu Vizard 0 11-24-2013 06:56 AM
how to remove velocity when mouse is disabled? jvacare1 Vizard 2 02-18-2010 10:25 AM
How Can I use two SensAble Omni at the same time junghungchien Vizard 0 09-03-2009 07:04 AM


All times are GMT -7. The time now is 12:56 PM.


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