- removed unused __interpolatedvec3 function.

This commit is contained in:
Christoph Oelckers 2022-08-27 10:43:05 +02:00
parent 6816e32d23
commit 4c80a19458

View file

@ -188,17 +188,6 @@ public:
};
}
vec3_t __interpolatedvec3(double const smoothratio, int const scale = 16)
{
return
{
(int)(interpolatedx(smoothratio, scale)* worldtoint),
(int)(interpolatedy(smoothratio, scale)* worldtoint),
(int)(interpolatedz(smoothratio, scale)* zworldtoint)
};
}
int16_t interpolatedang(double const smoothratio)
{
return interpolatedangle(oang, spr.ang, smoothratio, 16);