about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
authoremile <hanemile@protonmail.com>2018-10-13 22:39:50 +0200
committeremile <hanemile@protonmail.com>2018-10-13 22:39:50 +0200
commita6b6d4e78e03b86f85471c1b4e7ab9285392cd7c (patch)
tree15a929e880e79b671181d805e0877209b72aa49e /main.go
parent19ef23cc7fcccd16fbc098f547b2b1a9fcbb9877 (diff)
removed the black holes
Diffstat (limited to 'main.go')
-rw-r--r--main.go10
1 files changed, 2 insertions, 8 deletions
diff --git a/main.go b/main.go
index 13de4dc..bd4996c 100644
--- a/main.go
+++ b/main.go
@@ -11,16 +11,10 @@ import (
 
 func main() {
 	var threads int = 8
-	var path1 string = "out_0.png"
-	var frames int = 250
+	var frames int = 1
 
 	// the slice starsSlice stores the star structures
-	starsSlice := []structs.Star{
-		{structs.Coord{X: 30000, Y: 30000}, structs.Force{X: 0, Y: 0}, 500000000},
-		{structs.Coord{X: -30000, Y: 30000}, structs.Force{X: 0, Y: 0}, 500000000},
-		{structs.Coord{X: -30000, Y: 0}, structs.Force{X: 0, Y: 0}, 500000000},
-		{structs.Coord{X: 30000, Y: -30000}, structs.Force{X: 0, Y: 0}, 500000000},
-	}
+	starsSlice := []structs.Star{}
 
 	llog.Good("Opening the csv")
 	starsSlice = csv.Import("data/U_ALL.csv", 0, 25000, starsSlice)