minor changes

This commit is contained in:
Nico Pietroni 2013-07-23 11:24:38 +00:00
parent db3d3510b9
commit ac7b0c1bb1
1 changed files with 3 additions and 2 deletions

View File

@ -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);
}
}