2012-10-15 03:15:04 +02:00
|
|
|
#ifndef MIQ_QUADRANGULATOR_H
|
|
|
|
#define MIQ_QUADRANGULATOR_H
|
|
|
|
|
2012-10-18 02:44:25 +02:00
|
|
|
#include <vcg/complex/complex.h>
|
2012-10-15 03:15:04 +02:00
|
|
|
#include <vcg/simplex/face/pos.h>
|
|
|
|
#include <vcg/simplex/face/jumping_pos.h>
|
|
|
|
#include <vcg/complex/algorithms/attribute_seam.h>
|
|
|
|
#include <vcg/complex/algorithms/refine.h>
|
|
|
|
#include <vcg/complex/algorithms/smooth.h>
|
|
|
|
#include <vcg/complex/algorithms/clean.h>
|
2014-09-11 22:42:57 +02:00
|
|
|
#include <vcg/complex/algorithms/update/bounding.h>
|
|
|
|
#include <wrap/io_trimesh/export.h>
|
|
|
|
#include <vcg/complex/algorithms/update/texture.h>
|
2012-10-15 03:15:04 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
#define precisionQ 0.0000000001
|
2012-10-15 03:15:04 +02:00
|
|
|
|
|
|
|
template <class TriMesh,class PolyMesh>
|
|
|
|
class Quadrangulator
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2012-10-17 13:23:43 +02:00
|
|
|
typedef typename TriMesh::FaceType TriFaceType;
|
|
|
|
typedef typename TriMesh::VertexType TriVertexType;
|
|
|
|
typedef typename TriMesh::CoordType CoordType;
|
|
|
|
typedef typename TriMesh::ScalarType ScalarType;
|
|
|
|
|
|
|
|
typedef typename PolyMesh::FaceType PolyFaceType;
|
|
|
|
typedef typename PolyMesh::VertexType PolyVertexType;
|
|
|
|
typedef typename PolyMesh::CoordType PolyCoordType;
|
|
|
|
typedef typename PolyMesh::ScalarType PolyScalarType;
|
|
|
|
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
struct InterpolationInfo
|
|
|
|
{
|
|
|
|
CoordType Pos3D;
|
|
|
|
vcg::Point2<ScalarType> PosUV;
|
|
|
|
ScalarType alpha;
|
|
|
|
bool to_split;
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
InterpolationInfo()
|
|
|
|
{
|
|
|
|
Pos3D=CoordType(0,0,0);
|
|
|
|
PosUV=vcg::Point2<ScalarType>(0,0);
|
|
|
|
to_split=false;
|
|
|
|
alpha=-1;
|
|
|
|
}
|
|
|
|
};
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
//the interpolation map that is saved once to be univoque per edge
|
|
|
|
typedef std::pair<CoordType,CoordType > KeyEdgeType;
|
|
|
|
|
|
|
|
std::map<KeyEdgeType,InterpolationInfo> InterpMap;
|
|
|
|
|
|
|
|
//ScalarType UVtolerance;
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2012-10-18 02:44:25 +02:00
|
|
|
private:
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
bool ToSplit(const vcg::Point2<ScalarType> &uv0,
|
|
|
|
const vcg::Point2<ScalarType> &uv1,
|
|
|
|
int Dir,
|
|
|
|
ScalarType &alpha)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
ScalarType val0=uv0.V(Dir);
|
|
|
|
ScalarType val1=uv1.V(Dir);
|
|
|
|
int IntegerLine0=floor(val0);
|
|
|
|
int IntegerLine1=floor(val1);
|
|
|
|
if (IntegerLine0==IntegerLine1)
|
|
|
|
return false;//no integer line pass throught the edge
|
|
|
|
|
|
|
|
bool swapped=false;
|
|
|
|
if (IntegerLine0>IntegerLine1)
|
|
|
|
{
|
|
|
|
std::swap(IntegerLine0,IntegerLine1);
|
|
|
|
std::swap(val0,val1);
|
|
|
|
assert(val1>=val0);
|
|
|
|
swapped=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//then get the first if extist that overcome the threshold
|
|
|
|
int IntegerSplit=IntegerLine0+1;
|
|
|
|
bool found=false;
|
|
|
|
ScalarType dist1,dist0;
|
|
|
|
for (int i=IntegerSplit;i<=IntegerLine1;i++)
|
|
|
|
{
|
|
|
|
dist1=fabs(val1-IntegerSplit);
|
|
|
|
dist0=fabs(val0-IntegerSplit);
|
|
|
|
|
|
|
|
// if ((dist0>=UVtolerance)&&
|
|
|
|
// (dist1>=UVtolerance))
|
|
|
|
if ((val0!=IntegerSplit)&&
|
|
|
|
(val1!=IntegerSplit))
|
|
|
|
{
|
|
|
|
found=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
IntegerSplit++;
|
|
|
|
}
|
|
|
|
if (!found)return false;
|
|
|
|
|
|
|
|
//have to check distance also in opposite direction
|
|
|
|
ScalarType lenght=val1-val0;
|
|
|
|
assert(lenght>=0);
|
|
|
|
//alpha=1.0-(dist/lenght);
|
|
|
|
alpha=(dist1/lenght);
|
|
|
|
if (swapped)alpha=1-alpha;
|
|
|
|
assert((alpha>0)&&(alpha<1));
|
2012-10-17 13:23:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void RoundInitial(TriMesh &to_split)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
ScalarType minTolerance=precisionQ;
|
|
|
|
//first add all eddge
|
|
|
|
for (int i=0;i<to_split.face.size();i++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
TriFaceType *f=&to_split.face[i];
|
|
|
|
for (int j =0;j<3;j++)
|
|
|
|
{
|
|
|
|
vcg::Point2<ScalarType> UV=f->WT(j).P();
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
int int0=floor(UV.X()+0.5);
|
|
|
|
int int1=floor(UV.Y()+0.5);
|
|
|
|
|
|
|
|
ScalarType diff0=(fabs(UV.X()-(ScalarType)int0));
|
|
|
|
ScalarType diff1=(fabs(UV.Y()-(ScalarType)int1));
|
|
|
|
|
|
|
|
if (diff0<minTolerance)
|
|
|
|
UV.X()=(ScalarType)int0;
|
|
|
|
if (diff1<minTolerance)
|
|
|
|
UV.Y()=(ScalarType)int1;
|
|
|
|
|
|
|
|
f->WT(j).P()=UV;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RoundSplits(TriMesh &to_split,int dir)
|
|
|
|
{
|
|
|
|
ScalarType minTolerance=precisionQ;
|
|
|
|
//first add all eddge
|
|
|
|
for (int i=0;i<to_split.face.size();i++)
|
|
|
|
{
|
|
|
|
TriFaceType *f=&to_split.face[i];
|
|
|
|
for (int j =0;j<3;j++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
CoordType p0=f->P0(j);
|
|
|
|
CoordType p1=f->P1(j);
|
|
|
|
KeyEdgeType k(p0,p1);
|
|
|
|
assert(InterpMap.count(k)==1);
|
|
|
|
if (!InterpMap[k].to_split)continue;
|
|
|
|
//then get the intepolated value
|
|
|
|
vcg::Point2<ScalarType> UV=InterpMap[k].PosUV;
|
|
|
|
|
|
|
|
int int0=floor(UV.X()+0.5);
|
|
|
|
int int1=floor(UV.Y()+0.5);
|
|
|
|
|
|
|
|
ScalarType diff0=(fabs(UV.X()-(ScalarType)int0));
|
|
|
|
ScalarType diff1=(fabs(UV.Y()-(ScalarType)int1));
|
|
|
|
|
|
|
|
if (diff0<minTolerance)
|
|
|
|
UV.X()=(ScalarType)int0;
|
|
|
|
if (diff1<minTolerance)
|
|
|
|
UV.Y()=(ScalarType)int1;
|
|
|
|
|
|
|
|
InterpMap[k].PosUV=UV;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void InitSplitMap(TriMesh &to_split,
|
|
|
|
int dir)
|
|
|
|
{
|
|
|
|
assert((dir==0)||(dir==1));
|
|
|
|
InterpMap.clear();
|
|
|
|
//printf("direction %d\n",dir );
|
|
|
|
//first add all eddge
|
|
|
|
for (int i=0;i<to_split.face.size();i++)
|
|
|
|
{
|
|
|
|
TriFaceType *f=&to_split.face[i];
|
|
|
|
for (int j =0;j<3;j++)
|
|
|
|
{
|
|
|
|
CoordType p0=f->P0(j);
|
|
|
|
CoordType p1=f->P1(j);
|
|
|
|
vcg::Point2<ScalarType> Uv0=f->V0(j)->T().P();
|
|
|
|
vcg::Point2<ScalarType> Uv1=f->V1(j)->T().P();
|
|
|
|
KeyEdgeType k(p0,p1);
|
|
|
|
// printf("p0 (%5.5f,%5.5f,%5.5f) p1(%5.5f,%5.5f,%5.5f) \n",p0.X(),p0.Y(),p0.Z(),p1.X(),p1.Y(),p1.Z());
|
|
|
|
// printf("uv0 (%5.5f,%5.5f) uv1(%5.5f,%5.5f) \n",Uv0.X(),Uv0.Y(),Uv1.X(),Uv1.Y());
|
|
|
|
// fflush(stdout);
|
|
|
|
assert(InterpMap.count(k)==0);
|
|
|
|
InterpMap[k]=InterpolationInfo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//then set the ones to be splitted
|
|
|
|
for (int i=0;i<to_split.face.size();i++)
|
|
|
|
{
|
|
|
|
TriFaceType *f=&to_split.face[i];
|
|
|
|
for (int j =0;j<3;j++)
|
|
|
|
{
|
|
|
|
CoordType p0=f->P0(j);
|
|
|
|
CoordType p1=f->P1(j);
|
|
|
|
vcg::Point2<ScalarType> uv0=f->V0(j)->T().P();
|
|
|
|
vcg::Point2<ScalarType> uv1=f->V1(j)->T().P();
|
|
|
|
|
|
|
|
ScalarType alpha;
|
|
|
|
if (!ToSplit(uv0,uv1,dir,alpha))continue;
|
|
|
|
|
|
|
|
KeyEdgeType k(p0,p1);
|
|
|
|
assert(InterpMap.count(k)==1);
|
|
|
|
InterpMap[k].Pos3D=p0*alpha+p1*(1-alpha);
|
|
|
|
InterpMap[k].PosUV=uv0*alpha+uv1*(1-alpha);
|
|
|
|
InterpMap[k].to_split=true;
|
|
|
|
InterpMap[k].alpha=alpha;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//then make them coherent
|
|
|
|
for (int i=0;i<to_split.face.size();i++)
|
|
|
|
{
|
|
|
|
TriFaceType *f=&to_split.face[i];
|
|
|
|
for (int j =0;j<3;j++)
|
|
|
|
{
|
|
|
|
CoordType p0=f->P0(j);
|
|
|
|
CoordType p1=f->P1(j);
|
|
|
|
vcg::Point2<ScalarType> uv0=f->V0(j)->T().P();
|
|
|
|
vcg::Point2<ScalarType> uv1=f->V1(j)->T().P();
|
|
|
|
// if (p0>p1)continue; //only one verse of coherence
|
|
|
|
|
|
|
|
KeyEdgeType k0(p0,p1);
|
|
|
|
assert(InterpMap.count(k0)==1);//there should be already in the
|
|
|
|
//table and it should be coherent
|
|
|
|
|
|
|
|
KeyEdgeType k1(p1,p0);
|
|
|
|
if(InterpMap.count(k1)==0)continue;//REAL border, no need for update
|
|
|
|
|
|
|
|
bool to_split0=InterpMap[k0].to_split;
|
|
|
|
bool to_split1=InterpMap[k1].to_split;
|
|
|
|
|
|
|
|
//the find all possible cases
|
|
|
|
if ((!to_split0)&&(!to_split1))continue;
|
|
|
|
|
|
|
|
if ((to_split0)&&(to_split1))
|
|
|
|
{
|
|
|
|
CoordType Pos3D=InterpMap[k1].Pos3D;
|
|
|
|
InterpMap[k0].Pos3D=Pos3D;
|
|
|
|
|
|
|
|
//check if need to make coherent also the UV Position
|
|
|
|
//skip the fake border and do the rest
|
|
|
|
bool IsBorderFF=(f->FFp(j)==f);
|
|
|
|
|
|
|
|
if (!IsBorderFF) //in this case they should have same UVs
|
|
|
|
InterpMap[k0].PosUV=InterpMap[k1].PosUV;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ScalarType alpha=InterpMap[k1].alpha;
|
|
|
|
assert((alpha>=0)&&(alpha<=1));
|
|
|
|
alpha=1-alpha;
|
|
|
|
InterpMap[k0].PosUV=alpha*uv0+(1-alpha)*uv1;
|
|
|
|
InterpMap[k0].alpha=alpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ((!to_split0)&&(to_split1))
|
|
|
|
{
|
|
|
|
CoordType Pos3D=InterpMap[k1].Pos3D;
|
|
|
|
InterpMap[k0].Pos3D=Pos3D;
|
|
|
|
|
|
|
|
//check if need to make coherent also the UV Position
|
|
|
|
//skip the fake border and do the rest
|
|
|
|
bool IsBorderFF=(f->FFp(j)==f);
|
|
|
|
|
|
|
|
InterpMap[k0].to_split=true;
|
|
|
|
|
|
|
|
if (!IsBorderFF) //in this case they should have same UVs
|
|
|
|
InterpMap[k0].PosUV=InterpMap[k1].PosUV;
|
|
|
|
else //recalculate , it pass across a seam
|
|
|
|
{
|
|
|
|
ScalarType alpha=InterpMap[k1].alpha;
|
|
|
|
assert((alpha>=0)&&(alpha<=1));
|
|
|
|
alpha=1-alpha;
|
|
|
|
InterpMap[k0].PosUV=alpha*uv0+(1-alpha)*uv1;
|
|
|
|
InterpMap[k0].alpha=alpha;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RoundSplits(to_split,dir);
|
|
|
|
}
|
2012-10-17 13:23:43 +02:00
|
|
|
|
|
|
|
// Basic subdivision class
|
|
|
|
// This class must provide methods for finding the position of the newly created vertices
|
|
|
|
// In this implemenation we simply put the new vertex in the MidPoint position.
|
|
|
|
// Color and TexCoords are interpolated accordingly.
|
|
|
|
template<class MESH_TYPE>
|
|
|
|
struct SplitMidPoint : public std::unary_function<vcg::face::Pos<typename MESH_TYPE::FaceType> , typename MESH_TYPE::CoordType >
|
|
|
|
{
|
|
|
|
typedef typename MESH_TYPE::VertexType VertexType;
|
|
|
|
typedef typename MESH_TYPE::FaceType FaceType;
|
|
|
|
typedef typename MESH_TYPE::CoordType CoordType;
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
std::map<KeyEdgeType,InterpolationInfo> *MapEdge;
|
2012-10-17 13:23:43 +02:00
|
|
|
|
|
|
|
void operator()(typename MESH_TYPE::VertexType &nv,
|
|
|
|
vcg::face::Pos<typename MESH_TYPE::FaceType> ep)
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
VertexType* v0=ep.f->V0(ep.z);
|
2012-10-17 13:23:43 +02:00
|
|
|
VertexType* v1=ep.f->V1(ep.z);
|
2014-09-11 22:42:57 +02:00
|
|
|
assert(v0!=v1);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
CoordType p0=v0->P();
|
|
|
|
CoordType p1=v1->P();
|
|
|
|
assert(p0!=p1);
|
|
|
|
|
|
|
|
KeyEdgeType k(p0,p1);
|
|
|
|
bool found=(MapEdge->count(k)==1);
|
|
|
|
assert(found);
|
|
|
|
bool to_split=(*MapEdge)[k].to_split;
|
|
|
|
assert(to_split);
|
|
|
|
|
|
|
|
//get the value on which the edge must be splitted
|
|
|
|
nv.P()= (*MapEdge)[k].Pos3D;
|
2012-10-17 13:23:43 +02:00
|
|
|
//nv.N()= v0->N()*alpha+v1->N()*(1.0-alpha);
|
2014-09-11 22:42:57 +02:00
|
|
|
nv.T().P()=(*MapEdge)[k].PosUV;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
vcg::TexCoord2<ScalarType> WedgeInterp(vcg::TexCoord2<ScalarType> &t0,
|
|
|
|
vcg::TexCoord2<ScalarType> &t1)
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
return (vcg::TexCoord2<ScalarType>(0,0));
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
SplitMidPoint(std::map<KeyEdgeType,InterpolationInfo> *_MapEdge){MapEdge=_MapEdge;}
|
2012-10-17 13:23:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class MESH_TYPE>
|
|
|
|
class EdgePredicate
|
|
|
|
{
|
|
|
|
typedef typename MESH_TYPE::VertexType VertexType;
|
|
|
|
typedef typename MESH_TYPE::FaceType FaceType;
|
|
|
|
typedef typename MESH_TYPE::ScalarType ScalarType;
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
std::map<KeyEdgeType,InterpolationInfo> *MapEdge;
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
bool operator()(vcg::face::Pos<typename MESH_TYPE::FaceType> ep) const
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
VertexType* v0=ep.f->V0(ep.z);
|
|
|
|
VertexType* v1=ep.f->V1(ep.z);
|
|
|
|
assert(v0!=v1);
|
|
|
|
|
|
|
|
CoordType p0=v0->P();
|
|
|
|
CoordType p1=v1->P();
|
|
|
|
assert(p0!=p1);
|
|
|
|
|
|
|
|
KeyEdgeType k(p0,p1);
|
|
|
|
bool found=(MapEdge->count(k)==1);
|
|
|
|
assert(found);
|
|
|
|
bool to_split=(*MapEdge)[k].to_split;
|
|
|
|
return(to_split);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
EdgePredicate(std::map<KeyEdgeType,InterpolationInfo> *_MapEdge){MapEdge=_MapEdge;}
|
2012-10-17 13:23:43 +02:00
|
|
|
};
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void SplitTrisDir(TriMesh &to_split,
|
|
|
|
int dir)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
|
|
|
bool done=true;
|
2014-09-11 22:42:57 +02:00
|
|
|
//int step=0;
|
|
|
|
while (done)
|
|
|
|
{
|
|
|
|
printf("Number of Vertices %d \n",to_split.vn);
|
|
|
|
fflush(stdout);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
InitSplitMap(to_split,dir);
|
|
|
|
|
|
|
|
SplitMidPoint<TriMesh> splMd(&InterpMap);
|
|
|
|
EdgePredicate<TriMesh> eP(&InterpMap);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2012-10-15 03:15:04 +02:00
|
|
|
done=vcg::tri::RefineE<TriMesh,SplitMidPoint<TriMesh>,EdgePredicate<TriMesh> >(to_split,splMd,eP);
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
}
|
|
|
|
printf("Number of Vertices %d \n",to_split.vn);
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stdout);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool IsOnIntegerLine(vcg::Point2<ScalarType> uv0,
|
2014-09-11 22:42:57 +02:00
|
|
|
vcg::Point2<ScalarType> uv1)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
|
|
|
for (int dir=0;dir<2;dir++)
|
|
|
|
{
|
|
|
|
ScalarType val0=uv0.V(dir);
|
|
|
|
ScalarType val1=uv1.V(dir);
|
|
|
|
int integer0=floor(uv0.V(dir)+0.5);
|
|
|
|
int integer1=floor(uv1.V(dir)+0.5);
|
|
|
|
if (integer0!=integer1)continue;
|
2014-09-11 22:42:57 +02:00
|
|
|
// if ((fabs(val0-(ScalarType)integer0))>=UVtolerance)continue;
|
|
|
|
// if ((fabs(val1-(ScalarType)integer1))>=UVtolerance)continue;
|
|
|
|
if (val0!=(ScalarType)floor(val0))continue;
|
|
|
|
if (val1!=(ScalarType)floor(val1))continue;
|
2012-10-17 13:23:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsOnIntegerVertex(vcg::Point2<ScalarType> uv,
|
2014-09-11 22:42:57 +02:00
|
|
|
bool IsB)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
int onIntegerL=0;
|
2012-10-17 13:23:43 +02:00
|
|
|
for (int dir=0;dir<2;dir++)
|
|
|
|
{
|
|
|
|
ScalarType val0=uv.V(dir);
|
|
|
|
int integer0=floor(val0+0.5);
|
2014-09-11 22:42:57 +02:00
|
|
|
//if ((fabs(val0-(ScalarType)integer0))<UVtolerance)onIntegerL++;
|
|
|
|
if (val0==(ScalarType)floor(val0))onIntegerL++;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
if ((IsB)&&(onIntegerL>0))return true;
|
|
|
|
return (onIntegerL==2);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void InitIntegerEdgesVert(TriMesh &Tmesh)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
//IntegerEdges.clear();
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::FaceSetF(Tmesh);
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::FaceClearS(Tmesh);
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::VertexClearS(Tmesh);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2012-10-15 03:15:04 +02:00
|
|
|
for (unsigned int i=0;i<Tmesh.face.size();i++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
|
|
|
TriFaceType *f=&Tmesh.face[i];
|
|
|
|
if (f->IsD())continue;
|
|
|
|
for (int j=0;j<3;j++)
|
|
|
|
{
|
|
|
|
bool IsBorder=f->IsB(j);
|
2014-09-11 22:42:57 +02:00
|
|
|
if (IsBorder)
|
|
|
|
f->ClearF(j);
|
|
|
|
else
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
vcg::Point2<ScalarType> uv0=f->WT(j).P();
|
|
|
|
vcg::Point2<ScalarType> uv1=f->WT((j+1)%3).P();
|
|
|
|
|
|
|
|
if (IsOnIntegerLine(uv0,uv1))
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
f->ClearF(j);
|
|
|
|
TriFaceType *f1=f->FFp(j);
|
|
|
|
int z=f->FFi(j);
|
|
|
|
assert(f1!=f);
|
|
|
|
f1->ClearF(z);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
bool BorderV=f->V(j)->IsB();
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
if (IsOnIntegerVertex(f->WT(j).P(),BorderV))
|
|
|
|
f->V(j)->SetS();
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
short int AlignmentEdge(TriFaceType *f,
|
|
|
|
int edge_index)
|
|
|
|
{
|
|
|
|
vcg::Point2<ScalarType> uv0=f->WT(edge_index).P();
|
|
|
|
vcg::Point2<ScalarType> uv1=f->WT((edge_index+1)%3).P();
|
|
|
|
if (uv0.X()==uv1.X())return 0;
|
|
|
|
if (uv0.Y()==uv1.Y())return 1;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void FindPolygon(vcg::face::Pos<TriFaceType> &currPos,
|
|
|
|
std::vector<TriVertexType *> &poly,
|
|
|
|
std::vector<short int> &UVpoly)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
currPos.F()->SetV();
|
|
|
|
currPos.F()->C()=vcg::Color4b(255,0,0,255);
|
|
|
|
poly.clear();
|
|
|
|
assert(currPos.V()->IsS());
|
|
|
|
TriVertexType *v_init=currPos.V();
|
|
|
|
poly.push_back(currPos.V());
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
//retrieve UV
|
|
|
|
int indexV0=currPos.E();
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
short int Align=AlignmentEdge(currPos.F(),currPos.E());
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
std::vector<short int> TempUVpoly;
|
|
|
|
TempUVpoly.push_back(Align);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
currPos.NextNotFaux();
|
|
|
|
currPos.F()->SetV();
|
|
|
|
currPos.F()->C()=vcg::Color4b(255,0,0,255);
|
|
|
|
|
|
|
|
if ((currPos.V()->IsS())&&(currPos.V()!=v_init))
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
poly.push_back(currPos.V());
|
|
|
|
|
|
|
|
short int Align=AlignmentEdge(currPos.F(),currPos.E());
|
|
|
|
|
|
|
|
TempUVpoly.push_back(Align);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
}while (currPos.V()!=v_init);
|
|
|
|
|
|
|
|
//then shift the order of UV by one
|
|
|
|
//to be consistent with edge ordering
|
|
|
|
int size=TempUVpoly.size();
|
|
|
|
for (int i=0;i<size;i++)
|
|
|
|
UVpoly.push_back(TempUVpoly[(i+1)%size]);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2012-10-15 03:15:04 +02:00
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
void FindPolygons(TriMesh &Tmesh,
|
2014-09-11 22:42:57 +02:00
|
|
|
std::vector<std::vector<TriVertexType *> > &polygons,
|
|
|
|
std::vector<std::vector<short int> > &UV)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
vcg::tri::UpdateFlags<TriMesh>::FaceClearV(Tmesh);
|
2012-10-15 03:15:04 +02:00
|
|
|
for (unsigned int i=0;i<Tmesh.face.size();i++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
|
|
|
TriFaceType * f=&Tmesh.face[i];
|
2014-09-11 22:42:57 +02:00
|
|
|
if (f->IsV())continue;
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
for (int j=0;j<3;j++)
|
|
|
|
{
|
|
|
|
TriVertexType* v0=f->V0(j);
|
2014-09-11 22:42:57 +02:00
|
|
|
if (!v0->IsS())continue;
|
|
|
|
if (f->IsF(j))continue;
|
|
|
|
|
|
|
|
vcg::face::Pos<TriFaceType> startPos(f,j);
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
std::vector<TriVertexType *> poly;
|
2014-09-11 22:42:57 +02:00
|
|
|
std::vector< short int> UVpoly;
|
|
|
|
|
|
|
|
FindPolygon(startPos,poly,UVpoly);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
if (poly.size()>2)
|
2012-10-15 03:15:04 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
assert(poly.size()==UVpoly.size());
|
2012-10-17 13:23:43 +02:00
|
|
|
polygons.push_back(poly);
|
2014-09-11 22:42:57 +02:00
|
|
|
UV.push_back(UVpoly);
|
2012-10-15 03:15:04 +02:00
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
//only one polygon per initial face
|
|
|
|
break;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
}
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
//FUNCTIONS NEEDED BY "UV WEDGE TO VERTEX" FILTER
|
|
|
|
static void ExtractVertex(const TriMesh & srcMesh,
|
|
|
|
const TriFaceType & f,
|
|
|
|
int whichWedge,
|
|
|
|
const TriMesh & dstMesh,
|
|
|
|
TriVertexType & v)
|
|
|
|
{
|
|
|
|
(void)srcMesh;
|
|
|
|
(void)dstMesh;
|
|
|
|
// This is done to preserve every single perVertex property
|
|
|
|
// perVextex Texture Coordinate is instead obtained from perWedge one.
|
|
|
|
v.ImportData(*f.cV(whichWedge));
|
|
|
|
v.T() = f.cWT(whichWedge);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool CompareVertex(const TriMesh & m,
|
|
|
|
TriVertexType & vA,
|
|
|
|
TriVertexType & vB)
|
|
|
|
{
|
|
|
|
(void)m;
|
|
|
|
return (vA.cT() == vB.cT());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConvertWTtoVT(TriMesh &Tmesh)
|
|
|
|
{
|
|
|
|
int vn = Tmesh.vn;
|
|
|
|
vcg::tri::AttributeSeam::SplitVertex(Tmesh, ExtractVertex, CompareVertex);
|
|
|
|
vcg::tri::UpdateTopology<TriMesh>::FaceFace(Tmesh);
|
|
|
|
// vcg::tri::UpdateFlags<TriMesh>::FaceBorderFromFF(Tmesh);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2012-10-15 03:15:04 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
void ConvertVTtoWT(TriMesh &Tmesh)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
vcg::tri::UpdateTexture<TriMesh>::WedgeTexFromVertexTex(Tmesh);
|
|
|
|
vcg::tri::Clean<TriMesh>::RemoveDuplicateVertex(Tmesh);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReupdateMesh(TriMesh &Tmesh)
|
|
|
|
{
|
|
|
|
vcg::tri::UpdateNormal<TriMesh>::PerFaceNormalized(Tmesh); // update Normals
|
|
|
|
vcg::tri::UpdateNormal<TriMesh>::PerVertexNormalized(Tmesh);// update Normals
|
|
|
|
//compact the mesh
|
|
|
|
vcg::tri::Allocator<TriMesh>::CompactVertexVector(Tmesh);
|
|
|
|
vcg::tri::Allocator<TriMesh>::CompactFaceVector(Tmesh);
|
|
|
|
vcg::tri::UpdateTopology<TriMesh>::FaceFace(Tmesh); // update Topology
|
|
|
|
vcg::tri::UpdateTopology<TriMesh>::TestFaceFace(Tmesh); //and test it
|
|
|
|
//set flags
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::VertexClearV(Tmesh);
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::FaceBorderFromFF(Tmesh);
|
|
|
|
vcg::tri::UpdateFlags<TriMesh>::VertexBorderFromFace(Tmesh);
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2012-10-15 03:15:04 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
|
|
|
|
void TestIsProper(TriMesh &Tmesh)
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
//test manifoldness
|
2012-10-17 13:23:43 +02:00
|
|
|
int test=vcg::tri::Clean<TriMesh>::CountNonManifoldVertexFF(Tmesh);
|
2012-10-15 03:15:04 +02:00
|
|
|
//assert(test==0);
|
|
|
|
if (test != 0)
|
|
|
|
cerr << "Assertion failed: TestIsProper NonManifoldVertices!" << endl;
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
test=vcg::tri::Clean<TriMesh>::CountNonManifoldEdgeFF(Tmesh);
|
2012-10-15 03:15:04 +02:00
|
|
|
//assert(test==0);
|
|
|
|
if (test != 0)
|
|
|
|
cerr << "Assertion failed: TestIsProper NonManifoldEdges" << endl;
|
|
|
|
|
|
|
|
for (unsigned int i=0;i<Tmesh.face.size();i++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
|
|
|
TriFaceType *f=&Tmesh.face[i];
|
|
|
|
assert (!f->IsD());
|
|
|
|
for (int z=0;z<3;z++)
|
|
|
|
{
|
2012-10-15 03:15:04 +02:00
|
|
|
//int indexOpp=f->FFi(z);
|
|
|
|
TriFaceType *Fopp=f->FFp(z);
|
2012-10-17 13:23:43 +02:00
|
|
|
if (Fopp==f) continue;
|
2012-10-15 03:15:04 +02:00
|
|
|
//assert( f->FFp(z)->FFp(f->FFi(z))==f );
|
|
|
|
if (f->FFp(z)->FFp(f->FFi(z))!=f)
|
|
|
|
cerr << "Assertion failed: TestIsProper f->FFp(z)->FFp(f->FFi(z))!=f " << endl;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
void Quadrangulate(TriMesh &Tmesh,
|
|
|
|
PolyMesh &Pmesh,
|
2014-09-11 22:42:57 +02:00
|
|
|
std::vector< std::vector< short int> > &UV)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2012-10-15 03:15:04 +02:00
|
|
|
TestIsProper(Tmesh);
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
RoundInitial(Tmesh);
|
|
|
|
|
|
|
|
//UVtolerance=tolerance;
|
|
|
|
|
|
|
|
//split to per vert
|
|
|
|
ConvertWTtoVT(Tmesh);
|
|
|
|
|
|
|
|
|
2012-10-15 03:15:04 +02:00
|
|
|
vcg::tri::Allocator<TriMesh>::CompactVertexVector(Tmesh);
|
|
|
|
vcg::tri::Allocator<TriMesh>::CompactFaceVector(Tmesh);
|
|
|
|
vcg::tri::UpdateTopology<TriMesh>::FaceFace(Tmesh);
|
|
|
|
(void)Pmesh;
|
2014-09-11 22:42:57 +02:00
|
|
|
//TestIsProper(Tmesh);
|
2012-10-15 03:15:04 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
//then split the tris along X
|
|
|
|
SplitTrisDir(Tmesh,0);
|
|
|
|
SplitTrisDir(Tmesh,1);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
//merge back the mesh and WT coords
|
|
|
|
ConvertVTtoWT(Tmesh);
|
|
|
|
|
|
|
|
//CleanMesh(Pmesh);
|
|
|
|
|
|
|
|
//update properties of the mesh
|
|
|
|
ReupdateMesh(Tmesh);
|
|
|
|
|
|
|
|
//test manifoldness
|
2012-10-15 03:15:04 +02:00
|
|
|
TestIsProper(Tmesh);
|
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
InitIntegerEdgesVert(Tmesh);
|
|
|
|
|
|
|
|
for (int i=0;i<Tmesh.face.size();i++)
|
|
|
|
Tmesh.face[i].C()=vcg::Color4b(255,255,255,255);
|
2012-10-17 13:23:43 +02:00
|
|
|
|
2014-09-11 22:42:57 +02:00
|
|
|
std::vector<std::vector<TriVertexType *> > polygons;
|
|
|
|
FindPolygons(Tmesh,polygons,UV);
|
|
|
|
|
|
|
|
//then add to the polygonal mesh
|
2012-10-17 13:23:43 +02:00
|
|
|
Pmesh.Clear();
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
int numV=vcg::tri::UpdateSelection<TriMesh>::VertexCount(Tmesh);
|
|
|
|
|
|
|
|
//first create vertices
|
|
|
|
vcg::tri::Allocator<PolyMesh>::AddVertices(Pmesh,numV);
|
|
|
|
|
|
|
|
std::map<CoordType,int> VertMap;
|
|
|
|
int index=0;
|
|
|
|
for(unsigned int i=0;i<Tmesh.vert.size();i++)
|
2012-10-17 13:23:43 +02:00
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
if (!Tmesh.vert[i].IsS())continue;
|
|
|
|
|
|
|
|
CoordType pos=Tmesh.vert[i].P();
|
|
|
|
CoordType norm=Tmesh.vert[i].N();
|
|
|
|
vcg::Point2<ScalarType> UV=Tmesh.vert[i].T().P();
|
|
|
|
Pmesh.vert[index].P()=typename PolyMesh::CoordType(pos.X(),pos.Y(),pos.Z());
|
|
|
|
Pmesh.vert[index].N()=typename PolyMesh::CoordType(norm.X(),norm.Y(),norm.Z());
|
|
|
|
Pmesh.vert[index].T().P()=UV;
|
|
|
|
VertMap[pos]=index;
|
|
|
|
index++;
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
|
|
|
|
//then add polygonal mesh
|
2012-10-17 13:23:43 +02:00
|
|
|
vcg::tri::Allocator<PolyMesh>::AddFaces(Pmesh,polygons.size());
|
|
|
|
for (unsigned int i=0;i<polygons.size();i++)
|
|
|
|
{
|
|
|
|
int size=polygons[i].size();
|
|
|
|
Pmesh.face[i].Alloc(size);
|
|
|
|
for (int j=0;j<size;j++)
|
|
|
|
{
|
2014-09-11 22:42:57 +02:00
|
|
|
CoordType pos=(polygons[i][j])->P();
|
|
|
|
assert(VertMap.count(pos)==1);
|
|
|
|
int index=VertMap[pos];
|
2012-10-17 13:23:43 +02:00
|
|
|
Pmesh.face[i].V(j)=&(Pmesh.vert[index]);
|
|
|
|
}
|
|
|
|
}
|
2014-09-11 22:42:57 +02:00
|
|
|
|
2012-10-17 13:23:43 +02:00
|
|
|
}
|
2012-10-15 03:15:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|