diff --git a/wrap/miq/core/glUtils.h b/wrap/miq/core/glUtils.h index dd6c0957..3eb05ea8 100644 --- a/wrap/miq/core/glUtils.h +++ b/wrap/miq/core/glUtils.h @@ -95,7 +95,7 @@ public: static void GLDrawSeams(MeshType &mesh, float size=3, bool UV=false, - int numCuts=200) + int numCuts=400) { bool hasSeam = vcg::tri::HasPerFaceAttribute(mesh,std::string("Seams")); if(!hasSeam)return; @@ -131,7 +131,8 @@ public: int index=Handle_SeamIndex[i][j]; //assert(index>0); if (index>=0) - seamCol[j]=vcg::Color4b::Scatter(numCuts,index); + seamCol[j]=vcg::Color4b(255,0,0,255); + //seamCol[j]=vcg::Color4b::Scatter(numCuts,index); } }