WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 06-09-2010, 08:21 AM
Darkmax Darkmax is offline
Member
 
Join Date: Feb 2010
Posts: 108
help with augmented reality and physics

im trying to make a simple application with physics and augmented reality.

I want just display a logo above the marker and if i roll the marker the logo will fall from the marker.

But the logo collide s little high above the plane and doesn't fall from the plane when i roll the marker.

Code:
import viz

viz.go()
viz.phys.enable()   # Enable physics
viz.phys.setGravity(0,-9.8/6,0) #Half Gravity

#Add ARToolkit extension
ar = viz.add('artoolkit.dle')

#Create camera using first available webcam
camera = ar.addWebCamera()

#Create marker from pattern file
marker = camera.addMatrixMarker(10,width=1000)

#Ground
ground = viz.add('tut_ground.wrl')
ground.setScale(0.03,1,0.03)
ground.alpha(0)
ground.collidePlane() # Collide Plane
logo = viz.add('logo.wrl') # Add logo

viz.link(marker,ground)

logo.setScale(0.5,0.5,0.5)
logo.collideBox(bounce=1)
logo.add('box.wrl',alpha=.2,scale=logo.getBoundingBox(viz.REL_LOCAL).size)

def resetLogo():
	x,y,z = ground.getPosition()
	logo.setPosition([x,y+2,z])

vizact.onkeydown(" ",resetLogo)
Reply With Quote
 


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
Show Physics Shapes bloswald Vizard 3 04-07-2010 03:16 PM


All times are GMT -7. The time now is 02:42 AM.


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