about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--structs/structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs/structs.go b/structs/structs.go
index fe4d607..5b1c6ea 100644
--- a/structs/structs.go
+++ b/structs/structs.go
@@ -7,12 +7,12 @@ package structs
 
 // Force struct soring a force vector
 type Force struct {
-	X, Y float64
+	X, Y, Z float64
 }
 
 // Coord struct storing coordinates
 type Coord struct {
-	X, Y float64
+	X, Y, Z float64
 }
 
 // Star struct storing all necessary star information