From a3ba09a069b1e9197371932bec6bc39c516305f2 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 7 Oct 2006 10:02:16 +0000 Subject: [PATCH] Added missing typename for interp.parameters --- vcg/simplex/edge/base.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/edge/base.h b/vcg/simplex/edge/base.h index 2c22f83a..2fdeea63 100644 --- a/vcg/simplex/edge/base.h +++ b/vcg/simplex/edge/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.10 2005/11/30 14:05:04 ponchio +Fixed some UberZ fuynctions and non defined _flags + Revision 1.9 2005/10/14 12:34:55 cignoni Added ordered constructor that build a edge with unique ordering among vertices (useful for edge-collapse simplification) @@ -800,8 +803,9 @@ static bool HasEdgeMark() { @param _c Valore di ritorno per il vertice V(2) @return true se bq appartiene alla faccia, false altrimenti */ -bool InterpolationParameters(const CoordType & bq, ScalarType &a, ScalarType &_b) const + bool InterpolationParameters(const CoordType & bq, typename VertexType::ScalarType &a, ScalarType &_b) const { + typedef typename VertexType::ScalarType ScalarType; const ScalarType EPSILON = ScalarType(0.000001); ScalarType l;