From b0e33f0d9a56b42595171290a29b5b9f07508382 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 6 Jan 2019 14:23:18 -0700 Subject: [PATCH] Hippi --- render.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render.go b/render.go index d656f63..7af5a01 100644 --- a/render.go +++ b/render.go @@ -46,8 +46,8 @@ func main() { go computeThread() } - colorStep := float64(Iterations) / 4 - colors = interpolateColors("Plan9", colorStep) + colorStep := float64(Iterations) * 4 + colors = interpolateColors("Hippi", colorStep) log.Fatal(http.ListenAndServe(":6161", nil)) }