Removed new things from MLPPTransformsOld.

This commit is contained in:
Relintai 2023-02-13 19:32:31 +01:00
parent aab33650b7
commit 80f85ee0af
2 changed files with 1 additions and 11 deletions

View File

@ -51,6 +51,3 @@ std::vector<std::vector<real_t>> MLPPTransformsOld::discreteCosineTransform(std:
}
return B;
}
void MLPPTransformsOld::_bind_methods() {
}

View File

@ -9,19 +9,12 @@
#include "core/math/math_defs.h"
#include "core/object/reference.h"
#include <string>
#include <vector>
class MLPPTransformsOld : public Reference {
GDCLASS(MLPPTransformsOld, Reference);
class MLPPTransformsOld {
public:
std::vector<std::vector<real_t>> discreteCosineTransform(std::vector<std::vector<real_t>> A);
protected:
static void _bind_methods();
};
#endif /* Transforms_hpp */