From f23764a0ec0b946d9d0c0dd1a2537c0d22849086 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 10 May 2020 16:48:37 +0200 Subject: Dynamic factor, everything to double, removed cardioid struct, window resize --- config.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..1347faa --- /dev/null +++ b/config.h @@ -0,0 +1,16 @@ +#ifndef CONFIG_H +# define CONFIG_H + +// # define LINE_COLOR 0x151515ff +// # define LINE_COLOR 0xb71c1cff +# define LINE_COLOR 0x280000ff + +# define POINTS_STEP 1.0 +# define FACTOR_STEP 0.01 +# define POINTS_DEFAULT 300 +# define FACTOR_DEFAULT 2.0 + +# define WINDOW_WIDTH 640 +# define WINDOW_HEIGHT 480 + +#endif -- cgit