From 4c80a19458e49357f19001e6cd4c9351b255db57 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 27 Aug 2022 10:43:05 +0200 Subject: [PATCH] - removed unused __interpolatedvec3 function. --- source/core/coreactor.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/source/core/coreactor.h b/source/core/coreactor.h index 5b27fbc75..b7b429fd6 100644 --- a/source/core/coreactor.h +++ b/source/core/coreactor.h @@ -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);