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();