SPHERE_POSITION classifySphere( Vector3d& centre, Vector3d& planeNormal, Vector3d& pointOnPlane, float radius, float &distance )
{
//distance of polygon plane from origin
float distFromOrigin = float( planeDistance( planeNormal, pointOnPlane ) );
//distance of sphere centre to polgon plane
distance = dotProduct( planeNormal, centre ) + distFromOrigin;
// cout << "distance : " << distance << endl;
// cout << "radius : " << radius << endl;
if( absolute( distance ) < radius )
{
return INTERSECTS;
}
else if( distance >= radius )
{
return IN_FRONT;
}
return BEHIND;
}
sphere/plane collisions
I have been trying to write some functions to handle sphere/polygon collision and am nearly finished but now I'm stuck again.
The classifySphere(...) function shown below should tell me whether the sphere is infront of the plane, behind the plane, or intersects the plane. This is where the problem lies however because it only intersects the plane if the centre of the sphere is exactly on the plane.
I have tested values for the distance variable and they are in the region of 10000x too high/low. Why is that? I'm sure its a simple thing but I can't find it....
Anyway here is the code :
[edited by - endo on May 1, 2002 7:07:06 AM]
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement