1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
awesome-attractor/kernels/Lorenz3D.hpp
2010-11-13 20:41:02 +01:00

20 lines
219 B
C++

#ifndef LORENZ_HPP
#define LORENZ_HPP
#include "../AttractorKernel.hpp"
class Lorenz3D : public AttractorKernel {
private:
void init();
public:
Lorenz3D();
virtual void operator()();
};
#endif // LORENZ_HPP