diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-04 02:57:57 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-09-04 02:57:57 +0300 |
commit | ca9bbea0a0a3ec98fa6774a9d2c75f01974b0a68 (patch) | |
tree | b79c0a05824603c50fc7513ef82f660b89870087 /LorenzAttractor.h | |
parent | 55b7ecc50187f3039bf747c04b68601dfda45a6b (diff) |
Final form.
Changes to be committed:
new file: Inconsolata-Regular.ttf
modified: LorenzAttractor.cpp
modified: LorenzAttractor.h
modified: vectormath.h
modified: README.md
modified: main.cpp
modified: run.sh
Diffstat (limited to 'LorenzAttractor.h')
-rw-r--r-- | LorenzAttractor.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/LorenzAttractor.h b/LorenzAttractor.h index 9ebb1cb..b1873e5 100644 --- a/LorenzAttractor.h +++ b/LorenzAttractor.h @@ -1,8 +1,9 @@ +#include <SFML/Graphics.hpp>
+
#include "vectormath.h"
-#include <random>
#include <string>
-#include <SFML/Graphics.hpp>
+#include <random>
class LorenzAttractor
{
@@ -47,7 +48,7 @@ private: std::vector<std::vector<float>> trail_colours_params;
// Visual parameters
- unsigned num_points = 300;
+ unsigned num_points = 500;
unsigned trail_length = 100;
float speed = 1.f;
|