From 0d6a238b44a0f2841a1e8a8c947c68cad04ecc30 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 2 Aug 2014 10:40:41 -0700 Subject: [PATCH] Clean up some implementation header comments --- src/objectPlane.cc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/objectPlane.cc b/src/objectPlane.cc index 6b258b4..f7614bb 100644 --- a/src/objectPlane.cc +++ b/src/objectPlane.cc @@ -112,9 +112,7 @@ Plane::DoesIntersect(const Ray &ray, /* - * Plane::point_is_on_surface -- - * - * Determine if a point lies on the surface of this Sphere. + * charles::Plane::point_is_on_surface -- */ bool Plane::point_is_on_surface(const Vector3 &p) @@ -136,10 +134,7 @@ Plane::point_is_on_surface(const Vector3 &p) /* - * Plane::compute_normal -- - * - * Compute the normal for this Plane at the given point. If the point does not lie on the surface of the plane, a zero - * vector is returned. + * charles::Plane::compute_normal -- */ Vector3 Plane::compute_normal(const Vector3 &p)