Khangai Robot Play - Naive  01
THe naive play of the Khangai Robot
interpolation.h
Go to the documentation of this file.
1 /*
2  * interpolation.h
3  *
4  * Created : 4/14/2019
5  * Author : n-is
6  * email : 073bex422.nischal@pcampus.edu.np
7  */
8 
9 #ifndef _INTERPOLATION_H_
10 #define _INTERPOLATION_H_
11 
12 #include "vec3.h"
13 
14 float lerp(float x, float y, float t);
15 float cubic_herp(float x, float y, float t);
16 
19 
20 #endif
float cubic_herp(float x, float y, float t)
Definition: interpolation.cpp:19
float lerp(float x, float y, float t)
Definition: interpolation.cpp:14