]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - mathlib.h
v_yshearing: Make the cvar take the max angle to apply the effect to; remove the...
[xonotic/darkplaces.git] / mathlib.h
index 0aa8d19ce53cf8b7541bc645e0050b360992b25d..cb674e51a38affd019b3f023ad9e038f824da038 100644 (file)
--- a/mathlib.h
+++ b/mathlib.h
@@ -253,7 +253,7 @@ void AngleVectors (const vec3_t angles, vec3_t forward, vec3_t right, vec3_t up)
 /// LordHavoc: proper matrix version of AngleVectors
 void AngleVectorsFLU (const vec3_t angles, vec3_t forward, vec3_t left, vec3_t up);
 /// divVerent: improper matrix version of AngleVectors
-void AngleVectorsDuke3DFLU (const vec3_t angles, vec3_t forward, vec3_t left, vec3_t up);
+void AngleVectorsDuke3DFLU (const vec3_t angles, vec3_t forward, vec3_t left, vec3_t up, double maxShearAngle);
 /// LordHavoc: builds a [3][4] matrix
 void AngleMatrix (const vec3_t angles, const vec3_t translate, vec_t matrix[][4]);
 /// LordHavoc: calculates pitch/yaw/roll angles from forward and up vectors