28 lines
499 B
C++
28 lines
499 B
C++
#ifndef POLYNOMIALA3D_HPP
|
|
#define POLYNOMIALA3D_HPP
|
|
|
|
#include <cassert>
|
|
|
|
#include "../AttractorKernel.hpp"
|
|
#include "BasicKernel.h"
|
|
|
|
class PolynomialA3D : public BasicKernel {
|
|
// of course this can be seen as a subclasse of Polynomial
|
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
PolynomialA3D();
|
|
|
|
|
|
void iterate();
|
|
|
|
void * getProperty(const string identifier);
|
|
void setProperty(const string identifier, const void * value);
|
|
unsigned int getNumberOfParameters();
|
|
|
|
};
|
|
|
|
#endif // POLYNOMIALA3D_HPP
|
|
|