From bd1509578460d8313b4b042cdcb099698fa30f39 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Sun, 8 Jan 2012 17:11:15 +0000 Subject: [PATCH] Fixed comment --- gtsam/geometry/Point3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/geometry/Point3.h b/gtsam/geometry/Point3.h index 884bb8cd0..d3a4fe2ed 100644 --- a/gtsam/geometry/Point3.h +++ b/gtsam/geometry/Point3.h @@ -118,7 +118,7 @@ namespace gtsam { return sqrt(pow(x()-p2.x(),2.0) + pow(y()-p2.y(),2.0) + pow(z()-p2.z(),2.0)); } - /** dot product */ + /** Distance of the point from the origin */ double norm() const; /** cross product @return this x q */