From d468ff69c1b83ae41e03c92045c03fed35201833 Mon Sep 17 00:00:00 2001 From: emile Date: Fri, 19 Oct 2018 17:48:22 +0200 Subject: Changed the resolution to 16k for a greater wow-effect, adjusted han --- draw/draw.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'draw') diff --git a/draw/draw.go b/draw/draw.go index f6586ca..d1166b4 100644 --- a/draw/draw.go +++ b/draw/draw.go @@ -9,8 +9,8 @@ import ( // initializePlot generates a new plot and returns the plot context func initializePlot() *gg.Context { // Define the image size - const imageWidth = 8192 - const imageHeight = 8192 + const imageWidth = 8192 * 2 + const imageHeight = 8192 * 2 // Initialize the new context dc := gg.NewContext(imageWidth, imageHeight) -- cgit 1.4.1