My old project for strange attractors
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

29 lines
499 B

#ifndef POLYNOMIALA3D_HPP
#define POLYNOMIALA3D_HPP
15 years ago
#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();
15 years ago
void iterate();
15 years ago
void * getProperty(const string identifier);
void setProperty(const string identifier, const void * value);
unsigned int getNumberOfParameters();
};
#endif // POLYNOMIALA3D_HPP