From 375e0cec744dd6441eec0e037634f6201810d6e1 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Thu, 19 Mar 2009 17:26:26 +0000 Subject: [PATCH] added static member for vertex radius check (HasPerVertexRadius()). --- vcg/complex/trimesh/base.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/base.h b/vcg/complex/trimesh/base.h index 9f8f7072..69c7d8c2 100644 --- a/vcg/complex/trimesh/base.h +++ b/vcg/complex/trimesh/base.h @@ -395,7 +395,8 @@ static bool HasPerVertexColor() { return VertexType::HasColor() ; } static bool HasPerVertexMark() { return VertexType::HasMark() ; } static bool HasPerVertexQuality() { return VertexType::HasQuality(); } static bool HasPerVertexTexCoord(){ return VertexType::HasTexCoord(); } -static bool HasPerVertexFlags() { return VertexType::HasFlags(); } +static bool HasPerVertexRadius() { return VertexType::HasRadius(); } +static bool HasPerVertexFlags() { return VertexType::HasFlags(); } static bool HasPolyInfo() { return FaceType::HasPolyInfo() ; } static bool HasPerFaceColor() { return FaceType::HasFaceColor() ; }