sphere/plane collisions

Started by
0 comments, last by endo 21 years, 11 months ago
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 :
    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;
}    
[edited by - endo on May 1, 2002 7:07:06 AM]
Advertisement
problem solved, the normal wasnt a unit vector - thanks anyway

This topic is closed to new replies.

Advertisement