about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.go b/main.go
index 939ec0e..13de4dc 100644
--- a/main.go
+++ b/main.go
@@ -16,10 +16,10 @@ func main() {
 
 	// the slice starsSlice stores the star structures
 	starsSlice := []structs.Star{
-		{structs.Coord{X: 30000, Y: 30000}, structs.Force{0, 0}, 500000000},
-		{structs.Coord{X: -30000, Y: 30000}, structs.Force{0, 0}, 500000000},
-		{structs.Coord{X: -30000, Y: 0}, structs.Force{0, 0}, 500000000},
-		{structs.Coord{X: 30000, Y: -30000}, structs.Force{0, 0}, 500000000},
+		{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},
 	}
 
 	llog.Good("Opening the csv")