commented out unused param

This commit is contained in:
Paolo Cignoni 2016-11-03 12:55:46 +01:00
parent e6cac33ec8
commit fd3c661efc
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ bool HitHyper (Point3f center, float radius, Point3f viewpoint, Plane3f viewplan
* in the simple ortho case, the hit point is just the value of
* y = 1/x * (r^2 /2 ) on the hitOnViewPlane
*/
bool HitHyperOrtho(Point3f center, float radius, Point3f viewpoint, Plane3f viewplane,
bool HitHyperOrtho(Point3f center, float radius, Point3f /*viewpoint*/, Plane3f viewplane,
Point3f hitOnViewplane, Point3f & hit)
{
float xval = Distance (center, hitOnViewplane);