WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 04-15-2005, 05:46 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

The collidingwith function does not take object hierarchies into account. You can use a temporary work around for this though. Add an empty object to the world. To check for collisions update the empty objects position with the balls position and then call collidingwith on the empty object. Here's some sample code to explain it better:
Code:
#Add a fake ball to the world (This will be an empty object)
fakeBall = viz.add(viz.GROUP)
#Enable collisions on the fake ball
fakeBall .collidesphere(0.25)

#Before you call collidingwith do the following
fakeBall.translate(ball.get(viz.POSITION,viz.ABSOLUTE_WORLD))
fakeBall.rotatequat(ball.get(viz.QUAT,viz.ABSOLUTE_WORLD))
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


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


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