From 142880a279902ee76a23b6133e1d51acb93dca24 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Tue, 20 Feb 2007 14:07:53 +0000 Subject: [PATCH] added QualityType to comply faceplus type --- vcg/simplex/face/base.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/face/base.h b/vcg/simplex/face/base.h index 8b9071fd..256369ff 100644 --- a/vcg/simplex/face/base.h +++ b/vcg/simplex/face/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.41 2007/01/13 00:25:36 cignoni +Added #ifdefs to guarantee that ComputeNormal would be defined only once + Revision 1.40 2007/01/11 10:13:11 cignoni Rewrote the template of ComputeNormal functions to a more readable form. @@ -193,7 +196,9 @@ public: typedef Point3< ScalarType > NormalType; /// The geometric type of the face typedef Triangle3 GeometricType; - + /// The type of the quality (same as scalar) + typedef ScalarType QualityType; + typedef typename FVTYPE::FaceType FaceFromVertType; /// The bounding box type typedef Box3 BoxType;