about summary refs log tree commit diff
path: root/draw
diff options
context:
space:
mode:
authoremile <hanemile@protonmail.com>2018-10-15 15:20:44 +0200
committeremile <hanemile@protonmail.com>2018-10-15 15:20:44 +0200
commit04f6bbb6a71b38c2ea40cec68d5de9fe15d430ef (patch)
tree2755959e8b8d8b5c87c0806720e4189d191edb53 /draw
parent58849bac281f3d60ca3200038c47007e1ae845a8 (diff)
removed the white dots
Diffstat (limited to 'draw')
-rw-r--r--draw/draw.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/draw/draw.go b/draw/draw.go
index 92518ef..b66fc7b 100644
--- a/draw/draw.go
+++ b/draw/draw.go
@@ -114,16 +114,6 @@ func Slice(slice []structs.Star, path string) {
 	// draw all the stars in the given slice
 	drawStars(dc, slice)
 
-	dc.SetRGB(1, 1, 1)
-
-	// drawing the 4 big stars as bigger white dots
-	dc.DrawCircle(600, 600, 5)
-	dc.DrawCircle(-600, 600, 5)
-	dc.DrawCircle(-600, 0, 5)
-	dc.DrawCircle(600, -600, 5)
-
-	dc.Fill()
-
 	// save the plot to the given path
 	saveImage(dc, path)
 }