changeset 769:ba2007b746ef

Fixed nasty typo.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 25 Sep 2018 21:51:53 +0200
parents 3219e7e34953
children c12ec7fde3f2
files pkg/octree/vertex.go
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/octree/vertex.go	Tue Sep 25 17:45:44 2018 +0200
+++ b/pkg/octree/vertex.go	Tue Sep 25 21:51:53 2018 +0200
@@ -200,7 +200,7 @@
 }
 
 func (v Vertex) EpsEquals(w Vertex) bool {
-	const eqs = 1e-5
+	const eps = 1e-5
 	return math.Abs(v.X-w.X) < eps &&
 		math.Abs(v.Y-w.Y) < eps && math.Abs(v.Z-w.Z) < eps
 }