diff options
author | emile <hanemile@protonmail.com> | 2018-10-19 17:48:22 +0200 |
---|---|---|
committer | emile <hanemile@protonmail.com> | 2018-10-19 17:48:22 +0200 |
commit | d468ff69c1b83ae41e03c92045c03fed35201833 (patch) | |
tree | 09bddc674e5f1a56f0eacd17c966c9cb8cd15fe6 | |
parent | adb8b4f877c0145a1e56a7bdf37fd5bd66640b17 (diff) |
Changed the resolution to 16k for a greater wow-effect, adjusted han
-rw-r--r-- | draw/draw.go | 4 |
1 files changed, 2 insertions, 2 deletions
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) |