diff options
-rw-r--r-- | quadtree.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quadtree.go b/quadtree.go index ebab528..a954601 100644 --- a/quadtree.go +++ b/quadtree.go @@ -62,7 +62,7 @@ func (n *Node) Subdivide() { // Insert inserts the given star into the Node or the tree it is called on func (n *Node) Insert(star Star2D) error { - if n.Boundry.Width < 1e-20 { + if n.Boundry.Width < 1e-60 { return fmt.Errorf("%s", "Max Recursion depth reached!") } |