about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-02-05 21:57:35 +0100
committerEmile <hanemile@protonmail.com>2019-02-05 21:57:35 +0100
commit9dd56b9448e537fdd609c12878c1ac8679d3dc0e (patch)
tree99e5cfb3ba48a2941fcdb70da66dc95650d7d683
parent207271195592bce63c2f820fc6a07c3e774f75f6 (diff)
updated the file descriptions HEAD main
-rw-r--r--boundingBox.go2
-rw-r--r--quadtree.go2
-rw-r--r--quadtree_test.go2
-rw-r--r--star.go2
-rw-r--r--stargalaxy.go2
-rw-r--r--vector2D.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/boundingBox.go b/boundingBox.go
index e500967..1b15421 100644
--- a/boundingBox.go
+++ b/boundingBox.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// boundingbox.go defines the boundary of a node in the tree
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify
diff --git a/quadtree.go b/quadtree.go
index 21e6a76..73b77ad 100644
--- a/quadtree.go
+++ b/quadtree.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// quadtree.go defines nodes and trees storing galaxies
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify
diff --git a/quadtree_test.go b/quadtree_test.go
index 6d4ea62..e1039ef 100644
--- a/quadtree_test.go
+++ b/quadtree_test.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// quadtree_test.go provides tests for quadtree.go
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify
diff --git a/star.go b/star.go
index 11aea06..1542979 100644
--- a/star.go
+++ b/star.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// star.go defines stars and actions that can be used on them
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify
diff --git a/stargalaxy.go b/stargalaxy.go
index bbc71c7..efbe0da 100644
--- a/stargalaxy.go
+++ b/stargalaxy.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// stargalaxy.go defines the combination of a star and the galaxy it is inside of
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify
diff --git a/vector2D.go b/vector2D.go
index 5715d0d..2aa2081 100644
--- a/vector2D.go
+++ b/vector2D.go
@@ -1,4 +1,4 @@
-// main.go purpose is to build the interaction layer in between the http endpoints and the http server
+// vector2D defines a simple 2D vector type and some actions
 // Copyright (C) 2019 Emile Hansmaennel
 //
 // This program is free software: you can redistribute it and/or modify