hydrogen 1.2.5
Interpolation.h File Reference

Go to the source code of this file.

Namespaces

namespace  H2Core
namespace  H2Core::Interpolation

Enumerations

enum class  InterpolateMode {
  Linear = 0 , Cosine = 1 , Third = 2 , Cubic = 3 ,
  Hermite = 4
}

Functions

static float cosine_Interpolate (float y1, float y2, double mu)
static float cubic_Interpolate (float y0, float y1, float y2, float y3, double mu)
static float hermite_Interpolate (float y0, float y1, float y2, float y3, double mu)
static float linear_Interpolate (float y1, float y2, float mu)
static const QString ModeToQString (InterpolateMode mode)
static float third_Interpolate (float y0, float y1, float y2, float y3, double mu)