mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 10:49:59 +01:00
Working on source interpolation
This commit is contained in:
22
Interpolator.h
Normal file
22
Interpolator.h
Normal 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
|
||||
Reference in New Issue
Block a user