diff options
-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) |