mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 05:21:58 +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 );
|
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
|
||||||
|
|
Loading…
Reference in a new issue