From 5d6b59778a7346317ddfc549c350c0960a7a54a7 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 20 May 2020 12:42:39 +0200 Subject: Added Smoothness and super sampling --- src/state.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/state.c') diff --git a/src/state.c b/src/state.c index 37eeccc..f661de6 100644 --- a/src/state.c +++ b/src/state.c @@ -55,6 +55,8 @@ bool state_init(State *state) state->imag_start = -2.0; state->imag_end = 2.0; state->running = true; + state->smooth = false; + state->samples = 1.0; return true; } -- cgit