uncommented GetInSphereFace (compiled with gcc 4.2.3 and .net 2005)
This commit is contained in:
parent
c69c140e0a
commit
cbb547cdf0
|
@ -281,22 +281,22 @@ namespace vcg {
|
||||||
(distFunct,mv,_k,_p,_maxDist,_objectPtrs,_distances,_points));
|
(distFunct,mv,_k,_p,_maxDist,_objectPtrs,_distances,_points));
|
||||||
}
|
}
|
||||||
|
|
||||||
//template <class MESH, class GRID, class OBJPTRCONTAINER, class DISTCONTAINER, class POINTCONTAINER>
|
template <class MESH, class GRID, class OBJPTRCONTAINER, class DISTCONTAINER, class POINTCONTAINER>
|
||||||
// unsigned int GetInSphereFace(MESH & mesh,
|
unsigned int GetInSphereFace(MESH & mesh,
|
||||||
// GRID & gr,
|
GRID & gr,
|
||||||
// const typename GRID::CoordType & _p,
|
const typename GRID::CoordType & _p,
|
||||||
// const typename GRID::ScalarType & _r,
|
const typename GRID::ScalarType & _r,
|
||||||
// OBJPTRCONTAINER & _objectPtrs,
|
OBJPTRCONTAINER & _objectPtrs,
|
||||||
// DISTCONTAINER & _distances,
|
DISTCONTAINER & _distances,
|
||||||
// POINTCONTAINER & _points)
|
POINTCONTAINER & _points)
|
||||||
//{
|
{
|
||||||
// typedef FaceTmark<MESH> MarkerFace;
|
typedef FaceTmark<MESH> MarkerFace;
|
||||||
// MarkerFace mf;
|
MarkerFace mf;
|
||||||
// mf.SetMesh(&mesh);
|
mf.SetMesh(&mesh);
|
||||||
// typedef vcg::face::PointDistanceFunctor F DistFunct;
|
typedef vcg::face::PointDistanceFunctor FDistFunct;
|
||||||
// return (gr.GetInSphere/*<FDistFunct,MarkerFace,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>*/
|
return (gr.GetInSphere/*<FDistFunct,MarkerFace,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>*/
|
||||||
// (FDistFunct(),mf,_p,_r,_maxDist,_objectPtrs,_distances,_points));
|
(FDistFunct(),mf,_p,_r,_objectPtrs,_distances,_points));
|
||||||
//}
|
}
|
||||||
|
|
||||||
template <class MESH, class GRID, class OBJPTRCONTAINER, class DISTCONTAINER, class POINTCONTAINER>
|
template <class MESH, class GRID, class OBJPTRCONTAINER, class DISTCONTAINER, class POINTCONTAINER>
|
||||||
unsigned int GetInSphereVertex(MESH & mesh,
|
unsigned int GetInSphereVertex(MESH & mesh,
|
||||||
|
|
Loading…
Reference in New Issue