Skip to content

Commit

Permalink
remove integer interpolatedvec3 method.
Browse files Browse the repository at this point in the history
This was not used anymore.
  • Loading branch information
coelckers committed Aug 10, 2022
1 parent 9c28d24 commit 517191d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions source/core/coreactor.h
Expand Up @@ -172,17 +172,6 @@ class DCoreActor : public DObject
};
}

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);
Expand Down

0 comments on commit 517191d

Please sign in to comment.