about summary refs log tree commit diff
path: root/draw
diff options
context:
space:
mode:
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)
 }