#include <stdlib.h>
#include <assert.h>
#include "math_vector.h"
Include dependency graph for math_angles.h:

Go to the source code of this file.
Data Structures | |
| class | angles_t |
Typedefs | |
| typedef idVec3_t & | vec3_p |
Functions | |
| angles_t | operator * (float a, const angles_t &b) |
| angles_t | operator * (const angles_t &a, float b) |
| int | operator!= (angles_t &a, angles_t &b) |
| angles_t | operator+ (const angles_t &a, const angles_t &b) |
| angles_t | operator- (angles_t &a, angles_t &b) |
| int | operator== (angles_t &a, angles_t &b) |
Variables | |
| angles_t | ang_zero |
|
|
Definition at line 33 of file math_angles.h. |
|
||||||||||||
|
Definition at line 167 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw.
|
|
||||||||||||
|
Definition at line 163 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw.
|
|
||||||||||||
|
Definition at line 183 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw. 00183 {
00184 return ( ( a.pitch != b.pitch ) || ( a.yaw != b.yaw ) || ( a.roll != b.roll ) );
00185 }
|
|
||||||||||||
|
Definition at line 131 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw.
|
|
||||||||||||
|
Definition at line 151 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw.
|
|
||||||||||||
|
Definition at line 179 of file math_angles.h. References a, b, angles_t::pitch, angles_t::roll, and angles_t::yaw. 00179 {
00180 return ( ( a.pitch == b.pitch ) && ( a.yaw == b.yaw ) && ( a.roll == b.roll ) );
00181 }
|
|
|
|
1.3.9.1