From 5e6d0fe221251783f030f61d4ae54e97ee519a63 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 7 Nov 2012 15:43:38 +0000 Subject: [PATCH] corrected use of constant flags method --- vcg/complex/algorithms/bitquad_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/bitquad_support.h b/vcg/complex/algorithms/bitquad_support.h index 202f25aa..9a0f3837 100644 --- a/vcg/complex/algorithms/bitquad_support.h +++ b/vcg/complex/algorithms/bitquad_support.h @@ -910,7 +910,7 @@ static void SetValency(VertexType *v, int n){ static int GetValency(const VertexType *v){ //return (int)(v->cQ()); - return ( v->Flags() >> (VALENCY_FLAGS) ) & 255; + return ( v->cFlags() >> (VALENCY_FLAGS) ) & 255; } static void IncreaseValency(VertexType *v, int dv=1){