Added a default value to the optional cb parameter in the pointcloud normal generation function

This commit is contained in:
Paolo Cignoni 2013-06-24 08:36:08 +00:00
parent 90bb95a971
commit 388435d15a
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public:
bool useViewPoint; /// if the position of the viewpoint has to be used.
};
static void Compute(MeshType &m, Param p, vcg::CallBackPos * cb)
static void Compute(MeshType &m, Param p, vcg::CallBackPos * cb=0)
{
tri::Allocator<MeshType>::CompactVertexVector(m);
if(cb) cb(1,"Building KdTree...");