Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
308 B

  1. //========= Copyright � Valve Corporation, All rights reserved. ============//
  2. #ifndef MATHLIB_SPHERE_HDR
  3. #define MATHLIB_SPHERE_HDR
  4. #include "rubikon/param_types.h"
  5. #include "vector.h"
  6. void CastSphereRay( CShapeCastResult& out, const Vector &m, const Vector& p, const Vector& d, float flRadius );
  7. #endif