Increase iterations x4

This commit is contained in:
Steven Polley 2018-07-31 20:18:31 -06:00
parent 1ba61f095d
commit 7c410ab7dd
1 changed files with 3 additions and 4 deletions

View File

@ -19,8 +19,7 @@ import (
const (
Size = 256
Iterations = (1<<16 - 1) / Brighten
Brighten = 1024
Iterations = (1<<16 - 1) / 256
)
var (
@ -71,11 +70,11 @@ func main() {
go computeThread()
}
colorStep := float64(256)
colorStep := float64(Iterations)
colors = interpolateColors("Plan9", colorStep)
fmt.Println(len(colors))
log.Fatal(http.ListenAndServe(":80", nil))
log.Fatal(http.ListenAndServe(":6161", nil))
}
func renderTile(w http.ResponseWriter, r *http.Request) {