Remove unused HermiteBasis1 function

This commit is contained in:
Robert Müller 2022-08-09 16:54:55 +02:00
parent 05af632524
commit 62445ac006

View file

@ -48,11 +48,6 @@ bool CTuningParams::Get(const char *pName, float *pValue) const
return false;
}
float HermiteBasis1(float v)
{
return 2 * v * v * v - 3 * v * v + 1;
}
float VelocityRamp(float Value, float Start, float Range, float Curvature)
{
if(Value < Start)