예제 #1
0
// --[  Method  ]---------------------------------------------------------------
//
//  - Class     : CPlane
//  - Prototype : float Angle(const CVector3& vector)
//
//  - Purpose   : Returns the angle between the plane and a vector.
//
// ---------------------------------------------------------------------------
float CPlane::Angle(const CVector3& vector) const
{
	return vector.Angle(*this);
}