20 lines
259 B
C++
20 lines
259 B
C++
#ifndef POLYNOMIALA3D_HPP
|
|
#define POLYNOMIALA3D_HPP
|
|
|
|
#include "../AttractorKernel.hpp"
|
|
|
|
class PolynomialA3D : public AttractorKernel {
|
|
private:
|
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
PolynomialA3D();
|
|
|
|
virtual void operator()();
|
|
|
|
};
|
|
|
|
#endif // POLYNOMIALA3D_HPP
|
|
|