white space cleanup for last checkin

This commit is contained in:
Bill Currie 2000-05-22 08:44:34 +00:00
parent c4a0462f93
commit e68701838a
30 changed files with 514 additions and 496 deletions

View file

@ -85,6 +85,23 @@ float anglemod(float a);
void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees ); void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, float degrees );
<<<<<<< mathlib.h
#define BOX_ON_PLANE_SIDE(emins, emaxs, p) \
(((p)->type < 3)? \
( \
((p)->dist <= (emins)[(p)->type])? \
1 \
: \
( \
((p)->dist >= (emaxs)[(p)->type])?\
2 \
: \
3 \
) \
) \
: \
BoxOnPlaneSide( (emins), (emaxs), (p)))
=======
#define BOX_ON_PLANE_SIDE(emins, emaxs, p) \ #define BOX_ON_PLANE_SIDE(emins, emaxs, p) \
(((p)->type < 3)? \ (((p)->type < 3)? \
( \ ( \
@ -101,5 +118,6 @@ void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point,
: \ : \
BoxOnPlaneSide( (emins), (emaxs), (p)) \ BoxOnPlaneSide( (emins), (emaxs), (p)) \
) )
>>>>>>> 1.7
#endif // _MATHLIB_H #endif // _MATHLIB_H