From 16288318789345322ab67e64b508a08d18bc4af1 Mon Sep 17 00:00:00 2001 From: castano Date: Mon, 27 Oct 2008 08:00:46 +0000 Subject: [PATCH] Fix comment. --- src/nvmath/Plane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvmath/Plane.h b/src/nvmath/Plane.h index bc7128c..8a2f57d 100644 --- a/src/nvmath/Plane.h +++ b/src/nvmath/Plane.h @@ -59,7 +59,7 @@ namespace nv return Plane(plane.asVector() * inv); } - // Get the distance from the given point to this plane. + // Get the signed distance from the given point to this plane. inline float distance(Plane::Arg plane, Vector3::Arg point) { return dot(plane.vector(), point) - plane.offset();