From 01277711b61f5952da3690b6720c8e0ea4a56eca Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 10 May 2007 09:31:15 +0000 Subject: [PATCH] Corrected InterpolationParameters invocation --- vcg/space/triangle3.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/space/triangle3.h b/vcg/space/triangle3.h index 4c990193..738d7d60 100644 --- a/vcg/space/triangle3.h +++ b/vcg/space/triangle3.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.14 2007/05/04 16:33:27 ganovelli +moved InterpolationParamaters out the class Triangle + Revision 1.13 2007/04/04 23:23:55 pietroni - corrected and renamed distance to point ( function TrianglePointDistance) @@ -114,7 +117,7 @@ public: bool InterpolationParameters(const CoordType & bq, ScalarType &a, ScalarType &b, ScalarType &_c ) const{ - return InterpolationParameters(*this, const CoordType & bq, TriangleType::ScalarType &a, TriangleType::ScalarType &b, TriangleType::ScalarType &_c ); + return InterpolationParameters(*this, bq, a, b,_c ); }