From 50ed5305a43411b5255a8e99faa0704793d52260 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Wed, 21 Feb 2007 02:40:52 +0000 Subject: [PATCH] Added const qualifier to bbox parameter in Intersection_Triangle_Box(). --- vcg/space/intersection3.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/intersection3.h b/vcg/space/intersection3.h index 9365543d..2af6e5db 100644 --- a/vcg/space/intersection3.h +++ b/vcg/space/intersection3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.27 2006/10/25 16:04:32 pietroni +added intersection control between bounding boxes for intersection between segment and triangle function + Revision 1.26 2006/09/14 08:39:07 ganovelli Intersection_sphere_sphere added @@ -601,7 +604,7 @@ bool Intersection_Plane_Box(const vcg::Plane3 &pl, } template -bool Intersection_Triangle_Box( vcg::Box3 &bbox, +bool Intersection_Triangle_Box(const vcg::Box3 &bbox, const vcg::Point3 &p0, const vcg::Point3 &p1, const vcg::Point3 &p2)