You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
499 B
28 lines
499 B
#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
|
|
|
|
|