Working on source interpolation

This commit is contained in:
Bruno
2021-04-18 10:56:37 +02:00
parent cc752050f8
commit 7cafbc032b
4 changed files with 137 additions and 0 deletions

22
Interpolator.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef INTERPOLATOR_H
#define INTERPOLATOR_H
#include "Source.h"
class Interpolator
{
public:
Interpolator();
Source *target_;
SourceCore from_;
SourceCore to_;
SourceCore current_;
float cursor_;
};
#endif // INTERPOLATOR_H