mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-16 08:31:56 +00:00
white space cleanup for last checkin
This commit is contained in:
parent
c4a0462f93
commit
e68701838a
30 changed files with 514 additions and 496 deletions
|
@ -85,6 +85,23 @@ float anglemod(float a);
|
|||
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) \
|
||||
(((p)->type < 3)? \
|
||||
( \
|
||||
|
@ -101,5 +118,6 @@ void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point,
|
|||
: \
|
||||
BoxOnPlaneSide( (emins), (emaxs), (p)) \
|
||||
)
|
||||
>>>>>>> 1.7
|
||||
|
||||
#endif // _MATHLIB_H
|
||||
|
|
Loading…
Reference in a new issue