From 385ee8ba624aee431658593114a6e91b4ef7ba59 Mon Sep 17 00:00:00 2001 From: nicopietroni Date: Mon, 29 Jan 2007 00:21:46 +0000 Subject: [PATCH] - 1 warning corrected in InterpolationParameters function --- vcg/space/triangle2.h | 1 - 1 file changed, 1 deletion(-) diff --git a/vcg/space/triangle2.h b/vcg/space/triangle2.h index c3a79045..3c41cd5a 100644 --- a/vcg/space/triangle2.h +++ b/vcg/space/triangle2.h @@ -85,7 +85,6 @@ public: bool InterpolationParameters(const CoordType & bq, ScalarType &a, ScalarType &b, ScalarType &c ) const { const ScalarType EPSILON = ScalarType(0.0001); - ScalarType v_global,v0,v1,v2; ScalarType AreaGlobal=(P(1) - P(0)) ^ (P(2) - P(0)); ScalarType Area0=(P(2) - P(1)) ^ (bq - P(1));