|
#1
|
|||
|
|||
Collision Detection and Nearest Point to Probe
Hi,
I am currently working on implementing an interface to a haptic device in worldviz. What I am trying to figure out is the following: I want to enable collision detection of the haptic probe with objects that are in range of the workspace of the haptic device. For the communication with the haptic device I need to get the closest point to the probe on the mesh surface of the colliding object once a collision occurs. So I thought of waiting for the collision event callback being called and then iterating through the list of vertices of the colliding object and calculating the distance to my haptic probe. But I havent been able to find a mechanism to actually access the list of polygons/vertices of a colliding object to iterate over. Or maybe there is even an easier way in worldviz which I have not discovered yet. Any advices? thx in advance, xaBBu |
#2
|
|||
|
|||
The position of the probe will always be on the mesh surface when it is colliding with an object. So you shouldn't need to do anything special other than getting the current position:
Code:
hd.get(hd.POSITION) |
#3
|
|||
|
|||
Quote:
I on my part am developing a haptic device myselfe and aim at an interface for its control with worldviz. So I cant rely on the openhaptics lib by sensable... So I guess I need to deal with the collision detection and calculation of the forces proportional to the penetration depth myselfe? |
|
|