remove unused stuff

This commit is contained in:
Glenn Maynard
2003-12-20 04:10:13 +00:00
parent ca165c9b14
commit 6e7c8dbaff
2 changed files with 0 additions and 8 deletions
-7
View File
@@ -62,13 +62,6 @@ i=1;
return length;
}
void VectorInverse (vec3_t v)
{
v[0] = -v[0];
v[1] = -v[1];
v[2] = -v[2];
}
void AngleMatrix (const vec3_t angles, float matrix[3][4] )
{
float angle;
-1
View File
@@ -37,7 +37,6 @@ int VectorCompare (vec3_t v1, vec3_t v2);
vec_t VectorNormalize (vec3_t v);
void VectorInverse (vec3_t v);
void AngleMatrix (const vec3_t angles, float matrix[3][4] );
void R_ConcatTransforms (const float in1[3][4], const float in2[3][4], float out[3][4]);