vcglib/vcg/complex/trimesh/closest.h

243 lines
7.8 KiB
C
Raw Normal View History

2004-10-04 17:32:16 +02:00
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
History
$Log: not supported by cvs2svn $
2005-09-15 15:16:42 +02:00
Revision 1.8 2005/09/15 11:15:00 pietroni
minor changes
2005-09-15 13:15:00 +02:00
Revision 1.7 2005/09/14 12:56:47 pietroni
used closest function from grid
2005-09-14 14:56:47 +02:00
Revision 1.6 2005/08/26 09:12:48 cignoni
changed typedef A2UGridLink da 'GridStaticPtr<MESH::FaceContainer,double>::Link' a typedef 'GRID::Link'
Revision 1.5 2005/02/08 17:49:38 pietroni
added if (!l->Elem()->IsD()) test on each element
Revision 1.4 2005/01/28 12:00:33 cignoni
small gcc compiling issues for namespaces
Revision 1.3 2005/01/24 11:47:23 cignoni
Now used also by the official Metro
Removed using namespace (NEVER IN HEADERS!)
Made the computation of barycentric coords only when necessary
Renamed Mindistpoint to Closest
Revision 1.2 2005/01/21 17:13:09 pietroni
included distance.h changed Dist to vcg::face::PointDistance
Revision 1.1 2004/10/04 15:32:16 ganovelli
moved from metro core
2004-10-04 17:32:16 +02:00
Revision 1.6 2004/05/14 00:34:36 ganovelli
header added
****************************************************************************/
#ifndef __VCG_TRIMESH_CLOSEST
#define __VCG_TRIMESH_CLOSEST
2004-10-04 17:32:16 +02:00
#include <math.h>
#include <vcg/space/point3.h>
#include <vcg/space/box3.h>
#include <vcg/space/point4.h>
#include <vcg/math/base.h>
#include <vcg/simplex/face/distance.h>
2004-10-04 17:32:16 +02:00
#include <vcg/space/index/grid_static_ptr.h>
namespace vcg {
namespace trimesh {
2005-09-14 14:56:47 +02:00
template <class MESH_TYPE,class OBJ_TYPE>
class Tmark
{
2005-09-15 15:16:42 +02:00
MESH_TYPE &m;
2005-09-14 14:56:47 +02:00
public:
Tmark(MESH_TYPE &_m):m(_m){}
void UnMarkAll(){m.UnMarkAll();}
bool IsMarked(OBJ_TYPE* obj){return (m.IsMarked(obj));}
void Mark(OBJ_TYPE* obj){m.Mark(obj);}
};
2004-10-04 17:32:16 +02:00
/*
aka MetroCore
data una mesh m e una ug sulle sue facce trova il punto di m piu' vicino ad
un punto dato.
*/
// input: mesh, punto, griglia (gr), distanza limite (mdist)
// output: normale (interpolata) alla faccia e punto piu' vicino su di essa, e coord baricentriche del punto trovato
2004-10-04 17:32:16 +02:00
// Nota che il parametro template GRID non ci dovrebbe essere, visto che deve essere
// UGrid<MESH::FaceContainer >, ma non sono riuscito a definirlo implicitamente
template <class MESH, class GRID, class SCALAR>
void Closest( MESH & mesh, const Point3<SCALAR> & p, GRID & gr, SCALAR & mdist,
Point3<SCALAR> & normf, Point3<SCALAR> & bestq, typename MESH::FaceType * &f, Point3<SCALAR> &ip)
{
2005-09-14 14:56:47 +02:00
typedef SCALAR scalar;
typedef Point3<scalar> Point3x;
typedef Box3<SCALAR> Box3x;
//if(!gr.bbox.IsIn(p)) return;
////typedef typename GridStaticPtr<typename MESH::FaceContainer,double>::Link A2UGridLink;
//typedef typename GRID::Link A2UGridLink;
// scalar ax = p[0] - gr.bbox.min[0]; // Real coodinate of point refer to
// scalar ay = p[1] - gr.bbox.min[1];
// scalar az = p[2] - gr.bbox.min[2];
// int gx = int( ax/gr.voxel[0] ); // Integer coordinate of the point
// int gy = int( ay/gr.voxel[1] ); // voxel
// int gz = int( az/gr.voxel[2] );
// scalar vx = gr.bbox.min[0]+gx*gr.voxel[0]; // Real world coordinate of the Voxel
// scalar vy = gr.bbox.min[1]+gy*gr.voxel[1]; // origin
//scalar vz = gr.bbox.min[2]+gz*gr.voxel[2];
//scalar dx = math::Min(p[0] - vx, vx+gr.voxel[0]-p[0]); // Dist from the voxel
// scalar dy = math::Min(p[1] - vy, vy+gr.voxel[1]-p[1]);
// scalar dz = math::Min(p[2] - vz, vz+gr.voxel[2]-p[2]);
//scalar vdist,vstep;
//if(dx<dy && dx<dz)
//{
// vdist = dx;
// vstep = gr.voxel[0];
//}
//else if(dy<dz)
//{
// vdist = dy;
// vstep = gr.voxel[1];
//}
//else
//{
// vdist = dz;
// vstep = gr.voxel[2];
//}
////scalar error = gr.bbox.SquaredDiag();
////scalar error = gr.bbox.Diag();
//scalar error = mdist;
//Point3x q;
//typename MESH::FaceIterator bestf = (typename MESH::FaceIterator)0;
// mesh.UnMarkAll();
//int mxsd = gr.siz[0];
//if(mxsd<gr.siz[1]) mxsd = gr.siz[1];
//if(mxsd<gr.siz[2]) mxsd = gr.siz[2];
//for(int s=0;s<mxsd;++s)
//{
// if(s==0)
// {
// A2UGridLink *first, *last, *l;
// gr.Grid( gx, gy, gz, first, last );
// for(l=first;l!=last;++l)
// if (!l->Elem()->IsD())
// {
// if( ! mesh.IsMarked( &*(l->Elem())) )
// {
// if( face::PointDistance((*(l->Elem())), p, error, q) )
// {
// bestq = q;
// bestf = l->Elem();
// }
// mesh.Mark( &*(l->Elem()) );
// }
// }
// }
// else
// {
// for(int ix=gx-s;ix<=gx+s;++ix)
// if( ix>=0 && ix<gr.siz[0] )
// {
// for(int iy=gy-s;iy<=gy+s;++iy)
// if( iy>=0 && iy<gr.siz[1] )
// {
// int sz = ( ix==gx-s || ix==gx+s ||
// iy==gy-s || iy==gy+s )?1:2*s;
// for(int iz=gz-s;iz<=gz+s;iz+=sz)
// if( iz>=0 && iz<gr.siz[2] )
// {
// A2UGridLink *first, *last, *l;
// gr.Grid( ix, iy, iz, first, last );
// for(l=first;l!=last;++l)
// if (!l->Elem()->IsD())
// {
// if( ! mesh.IsMarked( &*(l->Elem())) )
// {
// if( vcg::face::PointDistance((*(l->Elem())), p, error, q) )
// {
// bestq = q;
// bestf = l->Elem();
// }
// mesh.Mark(&*l->Elem());
// }
// }
// }
// }
// }
// }
// if( fabs(error)<vdist )
// break;
// vdist += vstep;
//}
2005-09-15 13:15:00 +02:00
scalar error = mdist;
2005-09-14 14:56:47 +02:00
typedef Tmark<MESH,MESH::FaceType> Marker;
Marker t=Marker(mesh);
2005-09-15 13:15:00 +02:00
MESH::FaceType* bestf= gr.GetClosest<Marker>(p,error,bestq,t);
2005-09-14 14:56:47 +02:00
if(mdist > scalar(fabs(error)))
{
2005-09-14 14:56:47 +02:00
f=bestf;
typename MESH::ScalarType alfa, beta, gamma;
//calcolo normale con interpolazione trilineare
bestf->InterpolationParameters(bestq, alfa, beta, gamma);
normf = (bestf->V(0)->cN())*alfa+
(bestf->V(1)->cN())*beta+
(bestf->V(2)->cN())*gamma ;
ip=Point3x(alfa,beta,gamma);
//normf.Normalize(); inutile si assume le normali ai vertici benfatte
mdist = scalar(fabs(error));
}
2004-10-04 17:32:16 +02:00
}
template <class MESH, class GRID, class SCALAR>
void Closest( MESH & mesh, const Point3<SCALAR> & p, GRID & gr, SCALAR & mdist,
2004-10-04 17:32:16 +02:00
Point3<SCALAR> & normf, Point3<SCALAR> & bestq, typename MESH::face_type * &f)
{
Point3<SCALAR> ip;
Closest(mesh,p,gr,mdist,normf,bestq,f,ip);
2004-10-04 17:32:16 +02:00
}
} // end namespace trimesh
} // end namespace vcg
2004-10-04 17:32:16 +02:00
#endif