OPTPiX SpriteStudio SDK
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
ssInterpolation.h
1 #ifndef __SSINTERPOLATION__
2 #define __SSINTERPOLATION__
3 
4 
5 class SsCurve;
6 
8 inline bool SsNeedsCurveParams(SsInterpolationType::_enum type)
9 {
10  switch (type)
11  {
14  return true;
15  }
16  return false;
17 }
18 
20 float SsInterpolate(SsInterpolationType::_enum type, float time, float start, float end, const SsCurve * curve);
21 
22 #endif