corrected bugs on GEtKClosestVert and GetInSphereVert
This commit is contained in:
parent
b7d4a5efd6
commit
b61d0de3b6
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.16 2005/10/03 16:19:07 spinelli
|
||||||
|
fixed some bugs
|
||||||
|
|
||||||
Revision 1.15 2005/10/03 13:59:39 pietroni
|
Revision 1.15 2005/10/03 13:59:39 pietroni
|
||||||
added GetInSphere and GetInBox functions
|
added GetInSphere and GetInBox functions
|
||||||
rensmed Functions respectively with Face suffix or Vertex suffix for query on vertex or faces
|
rensmed Functions respectively with Face suffix or Vertex suffix for query on vertex or faces
|
||||||
|
@ -235,7 +238,7 @@ namespace vcg {
|
||||||
MarkerVert mv;
|
MarkerVert mv;
|
||||||
mv.SetMesh(&mesh);
|
mv.SetMesh(&mesh);
|
||||||
typedef vcg::vertex::PointDistanceFunctor VDistFunct;
|
typedef vcg::vertex::PointDistanceFunctor VDistFunct;
|
||||||
return (gr.GetKClosest<VDistFunct,MarkerFace,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>
|
return (gr.GetKClosest<VDistFunct,MarkerVert,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>
|
||||||
(VDistFunct(),mv,_k,_p,_maxDist,_objectPtrs,_distances,_points));
|
(VDistFunct(),mv,_k,_p,_maxDist,_objectPtrs,_distances,_points));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue