12345678910111213141516 |
-
-
-
-
-
-
-
- #import "LNInterpolable.h"
-
- LNInterpolationBehavior const LNInterpolationBehaviorUseDefault = @"LNInterpolationBehaviorUseDefault";
-
- double LNLinearInterpolate(double from, double to, double p)
- {
- return from + p * (to - from);
- }
|