mirror of
https://github.com/ENSL/NS.git
synced 2024-11-13 00:24:38 +00:00
73a03548a7
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@369 67975925-1194-0748-b3d5-c16f83f1a3a1
14 lines
No EOL
359 B
C
14 lines
No EOL
359 B
C
#ifndef VECTOR_UTIL_H
|
|
#define VECTOR_UTIL_H
|
|
|
|
#include "common/vec_op.h"
|
|
|
|
float Length(const float *v);
|
|
void VectorMA (const float *veca, float scale, const float *vecb, float *vecc);
|
|
void VectorScale (const float *in, float scale, float *out);
|
|
float VectorNormalize (float *v);
|
|
void VectorInverse ( float *v );
|
|
|
|
extern vec3_t vec3_origin;
|
|
|
|
#endif |