2011-10-05 17:04:40 +02:00
|
|
|
/***************************************************************************
|
2004-03-03 16:35:53 +01: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. *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
2004-04-21 16:06:10 +02:00
|
|
|
#ifndef __VCGLIB_TRIALLOCATOR
|
|
|
|
#define __VCGLIB_TRIALLOCATOR
|
|
|
|
|
2010-03-15 16:17:20 +01:00
|
|
|
#include <typeinfo>
|
|
|
|
#include <map>
|
2008-06-05 16:12:40 +02:00
|
|
|
#include <set>
|
2004-10-14 17:08:04 +02:00
|
|
|
|
2004-03-03 16:35:53 +01:00
|
|
|
namespace vcg {
|
2011-06-14 16:52:38 +02:00
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
class PointerToAttribute
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SimpleTempDataBase * _handle; // pointer to the SimpleTempData that stores the attribute
|
|
|
|
std::string _name; // name of the attribute
|
|
|
|
int _sizeof; // size of the attribute type (used only with VMI loading)
|
|
|
|
int _padding; // padding (used only with VMI loading)
|
2011-06-14 16:52:38 +02:00
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
int n_attr; // unique ID of the attribute
|
2011-06-14 16:52:38 +02:00
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
void Resize(const int & sz){((SimpleTempDataBase *)_handle)->Resize(sz);}
|
|
|
|
void Reorder(std::vector<size_t> & newVertIndex){((SimpleTempDataBase *)_handle)->Reorder(newVertIndex);}
|
|
|
|
bool operator<(const PointerToAttribute b) const { return(_name.empty()&&b._name.empty())?(_handle < b._handle):( _name < b._name);}
|
|
|
|
};
|
2011-06-14 16:52:38 +02:00
|
|
|
|
|
|
|
namespace tri {
|
2012-10-26 08:16:15 +02:00
|
|
|
/** \addtogroup trimesh
|
|
|
|
@{
|
|
|
|
*/
|
2007-12-11 12:36:03 +01:00
|
|
|
|
2008-04-10 11:18:57 +02:00
|
|
|
template<class MeshType>
|
2011-12-13 00:29:16 +01:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::VertexType &v) {return &v-&*m.vert.begin();}
|
2008-04-10 11:18:57 +02:00
|
|
|
template<class MeshType>
|
2011-12-13 00:29:16 +01:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::FaceType &f) {return &f-&*m.face.begin();}
|
2010-06-16 17:17:42 +02:00
|
|
|
template<class MeshType>
|
2011-12-13 00:29:16 +01:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::EdgeType &e) {return &e-&*m.edge.begin();}
|
2010-06-16 17:17:42 +02:00
|
|
|
template<class MeshType>
|
2011-12-13 00:29:16 +01:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::HEdgeType &h) {return &h-&*m.hedge.begin();}
|
2008-04-10 11:18:57 +02:00
|
|
|
|
|
|
|
template<class MeshType>
|
|
|
|
size_t Index(MeshType &m, const typename MeshType::VertexType *vp) {return vp-&*m.vert.begin();}
|
|
|
|
template<class MeshType>
|
|
|
|
size_t Index(MeshType &m, const typename MeshType::FaceType * fp) {return fp-&*m.face.begin();}
|
2010-06-16 17:17:42 +02:00
|
|
|
template<class MeshType>
|
2012-10-04 13:10:25 +02:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::EdgeType* e) {return e-&*m.edge.begin();}
|
2010-06-16 17:17:42 +02:00
|
|
|
template<class MeshType>
|
2012-10-04 13:10:25 +02:00
|
|
|
size_t Index(MeshType &m, const typename MeshType::HEdgeType* h) {return h-&*m.hedge.begin();}
|
2008-03-11 10:22:07 +01:00
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
template <class MeshType, class ATTR_CONT>
|
2009-12-07 10:05:20 +01:00
|
|
|
void ReorderAttribute(ATTR_CONT &c,std::vector<size_t> & newVertIndex, MeshType & /* m */){
|
2009-07-29 14:46:46 +02:00
|
|
|
typename std::set<typename MeshType::PointerToAttribute>::iterator ai;
|
2008-05-15 18:32:27 +02:00
|
|
|
for(ai = c.begin(); ai != c.end(); ++ai)
|
2009-07-29 14:46:46 +02:00
|
|
|
((typename MeshType::PointerToAttribute)(*ai)).Reorder(newVertIndex);
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class MeshType, class ATTR_CONT>
|
2012-10-04 13:10:25 +02:00
|
|
|
void ResizeAttribute(ATTR_CONT &c,const int & sz , MeshType &/*m*/){
|
2009-07-29 14:46:46 +02:00
|
|
|
typename std::set<typename MeshType::PointerToAttribute>::iterator ai;
|
2008-05-15 18:32:27 +02:00
|
|
|
for(ai =c.begin(); ai != c.end(); ++ai)
|
2010-10-08 18:51:45 +02:00
|
|
|
((typename MeshType::PointerToAttribute)(*ai)).Resize(sz);
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/*!
|
|
|
|
\brief Class to safely add and delete elements in a mesh.
|
|
|
|
|
|
|
|
Adding elements to a mesh, like faces and vertices can involve the reallocation of the vectors of the involved elements.
|
|
|
|
This class provide the only safe methods to add elements.
|
|
|
|
It also provide an accessory class vcg::tri::PointerUpdater for updating pointers to mesh elements that are kept by the user.
|
|
|
|
*/
|
|
|
|
template <class MeshType>
|
2006-02-28 13:13:49 +01:00
|
|
|
class Allocator
|
2004-03-03 16:35:53 +01:00
|
|
|
{
|
2006-02-28 13:13:49 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename MeshType::VertexType VertexType;
|
|
|
|
typedef typename MeshType::VertexPointer VertexPointer;
|
|
|
|
typedef typename MeshType::VertexIterator VertexIterator;
|
2008-05-15 18:32:27 +02:00
|
|
|
typedef typename MeshType::VertContainer VertContainer;
|
2008-11-12 16:46:16 +01:00
|
|
|
|
|
|
|
typedef typename MeshType::EdgeType EdgeType;
|
|
|
|
typedef typename MeshType::EdgePointer EdgePointer;
|
|
|
|
typedef typename MeshType::EdgeIterator EdgeIterator;
|
|
|
|
typedef typename MeshType::EdgeContainer EdgeContainer;
|
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
typedef typename MeshType::FaceType FaceType;
|
|
|
|
typedef typename MeshType::FacePointer FacePointer;
|
|
|
|
typedef typename MeshType::FaceIterator FaceIterator;
|
2008-05-15 18:32:27 +02:00
|
|
|
typedef typename MeshType::FaceContainer FaceContainer;
|
2010-03-25 17:50:10 +01:00
|
|
|
|
|
|
|
typedef typename MeshType::HEdgeType HEdgeType;
|
|
|
|
typedef typename MeshType::HEdgePointer HEdgePointer;
|
|
|
|
typedef typename MeshType::HEdgeIterator HEdgeIterator;
|
|
|
|
typedef typename MeshType::HEdgeContainer HEdgeContainer;
|
|
|
|
|
|
|
|
|
2010-03-15 16:17:20 +01:00
|
|
|
typedef typename MeshType::PointerToAttribute PointerToAttribute;
|
|
|
|
typedef typename std::set<PointerToAttribute>::iterator AttrIterator;
|
|
|
|
typedef typename std::set<PointerToAttribute>::const_iterator AttrConstIterator;
|
|
|
|
typedef typename std::set<PointerToAttribute >::iterator PAIte;
|
2006-02-28 13:13:49 +01:00
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/*!
|
|
|
|
\brief Accessory class to update pointers after eventual reallocation caused by adding elements.
|
|
|
|
|
|
|
|
This class is used when allocating new vertexes and faces to update
|
2006-02-28 13:13:49 +01:00
|
|
|
the pointers that can be changed when resizing the involved vectors of vertex or faces.
|
|
|
|
It can also be used to prevent any update of the various mesh fields
|
|
|
|
(e.g. in case you are building all the connections by hand as in a importer);
|
2012-10-26 00:53:33 +02:00
|
|
|
\sa \ref allocation
|
2006-02-28 13:13:49 +01:00
|
|
|
*/
|
|
|
|
template<class SimplexPointerType>
|
|
|
|
class PointerUpdater
|
|
|
|
{
|
|
|
|
public:
|
2009-06-29 18:13:26 +02:00
|
|
|
PointerUpdater(void) : newBase(0), oldBase(0), newEnd(0), oldEnd(0), preventUpdateFlag(false) { ; }
|
2011-05-31 10:28:40 +02:00
|
|
|
void Clear(){newBase=oldBase=newEnd=oldEnd=0;}
|
2012-10-26 00:53:33 +02:00
|
|
|
/*! \brief Update a pointer to an element of a mesh after a reallocation
|
|
|
|
|
|
|
|
The updating is correctly done only if this PointerUpdater have been passed to the corresponing allocation call. \sa \ref allocation
|
|
|
|
*/
|
2006-02-28 13:13:49 +01:00
|
|
|
void Update(SimplexPointerType &vp)
|
|
|
|
{
|
2010-10-27 19:46:46 +02:00
|
|
|
//if(vp>=newBase && vp<newEnd) return;
|
|
|
|
if(vp<oldBase || vp>oldEnd) return;
|
2006-11-28 23:34:28 +01:00
|
|
|
assert(vp>=oldBase);
|
|
|
|
assert(vp<oldEnd);
|
2006-02-28 13:13:49 +01:00
|
|
|
vp=newBase+(vp-oldBase);
|
2010-10-22 18:01:58 +02:00
|
|
|
if(!remap.empty())
|
2011-05-31 10:28:40 +02:00
|
|
|
vp = newBase + remap[vp-newBase];
|
2006-02-28 13:13:49 +01:00
|
|
|
}
|
2012-10-26 00:53:33 +02:00
|
|
|
/*!
|
|
|
|
\brief return true if the allocation operation that initialized this PointerUpdater has caused a reallocation
|
|
|
|
*/
|
2010-10-22 18:01:58 +02:00
|
|
|
bool NeedUpdate() {if((oldBase && newBase!=oldBase && !preventUpdateFlag) || !remap.empty()) return true; else return false;}
|
2006-02-28 13:13:49 +01:00
|
|
|
|
|
|
|
SimplexPointerType newBase;
|
2009-07-08 18:12:46 +02:00
|
|
|
SimplexPointerType oldBase;
|
2006-02-28 13:13:49 +01:00
|
|
|
SimplexPointerType newEnd;
|
|
|
|
SimplexPointerType oldEnd;
|
2010-10-22 18:01:58 +02:00
|
|
|
std::vector<size_t> remap;
|
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
bool preventUpdateFlag; /// when true no update is considered necessary.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/** \brief Add n vertices to the mesh.
|
|
|
|
Function to add n vertices to the mesh.
|
|
|
|
The elements are added always to the end of the vector. No attempt of reusing previously deleted element is done.
|
|
|
|
\sa PointerUpdater
|
|
|
|
\param m the mesh to be modified
|
|
|
|
\param n the number of elements to be added
|
|
|
|
\param pu a PointerUpdater initialized so that it can be used to update pointers to vertices that could have become invalid after this adding.
|
|
|
|
\retval the iterator to the first element added.
|
2006-02-28 13:13:49 +01:00
|
|
|
*/
|
|
|
|
static VertexIterator AddVertices(MeshType &m,int n, PointerUpdater<VertexPointer> &pu)
|
|
|
|
{
|
2012-11-10 15:36:54 +01:00
|
|
|
VertexIterator last;
|
|
|
|
if(n == 0) return m.vert.end();
|
|
|
|
pu.Clear();
|
|
|
|
if(m.vert.empty()) pu.oldBase=0; // if the vector is empty we cannot find the last valid element
|
|
|
|
else {
|
|
|
|
pu.oldBase=&*m.vert.begin();
|
|
|
|
pu.oldEnd=&m.vert.back()+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m.vert.resize(m.vert.size()+n);
|
|
|
|
m.vn+=n;
|
|
|
|
|
|
|
|
typename std::set<PointerToAttribute>::iterator ai;
|
|
|
|
for(ai = m.vert_attr.begin(); ai != m.vert_attr.end(); ++ai)
|
|
|
|
((PointerToAttribute)(*ai)).Resize(m.vert.size());
|
|
|
|
|
|
|
|
pu.newBase = &*m.vert.begin();
|
|
|
|
pu.newEnd = &m.vert.back()+1;
|
|
|
|
if(pu.NeedUpdate())
|
|
|
|
{
|
|
|
|
for (FaceIterator fi=m.face.begin(); fi!=m.face.end(); ++fi)
|
|
|
|
if(!(*fi).IsD())
|
|
|
|
for(int i=0; i < (*fi).VN(); ++i)
|
|
|
|
if ((*fi).cV(i)!=0) pu.Update((*fi).V(i));
|
|
|
|
|
|
|
|
for (EdgeIterator ei=m.edge.begin(); ei!=m.edge.end(); ++ei)
|
|
|
|
if(!(*ei).IsD())
|
|
|
|
{
|
|
|
|
if(HasEVAdjacency (m)) { pu.Update((*ei).V(0)); pu.Update((*ei).V(1));}
|
|
|
|
// if(HasEVAdjacency(m)) pu.Update((*ei).EVp());
|
|
|
|
}
|
|
|
|
HEdgeIterator hi;
|
|
|
|
for (hi=m.hedge.begin(); hi!=m.hedge.end(); ++hi)
|
|
|
|
if(!(*hi).IsD())
|
|
|
|
{
|
|
|
|
if(HasHVAdjacency (m))
|
2008-11-12 16:46:16 +01:00
|
|
|
{
|
2012-11-10 15:36:54 +01:00
|
|
|
pu.Update((*hi).HVp());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// e poiche' lo spazio e' cambiato si ricalcola anche last da zero
|
|
|
|
}
|
|
|
|
unsigned int siz=(unsigned int)m.vert.size()-n;
|
|
|
|
|
|
|
|
last = m.vert.begin();
|
|
|
|
advance(last,siz);
|
|
|
|
|
|
|
|
return last;// deve restituire l'iteratore alla prima faccia aggiunta;
|
2006-02-28 13:13:49 +01:00
|
|
|
}
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/** \brief Wrapper to AddVertices(); no PointerUpdater
|
2008-07-29 15:20:44 +02:00
|
|
|
*/
|
2006-02-28 13:13:49 +01:00
|
|
|
static VertexIterator AddVertices(MeshType &m, int n)
|
|
|
|
{
|
|
|
|
PointerUpdater<VertexPointer> pu;
|
|
|
|
return AddVertices(m, n,pu);
|
|
|
|
}
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/** \brief Wrapper to AddVertices() no PointerUpdater but a vector of VertexPointer pointers to be updated
|
2008-07-29 15:20:44 +02:00
|
|
|
*/
|
|
|
|
static VertexIterator AddVertices(MeshType &m, int n, std::vector<VertexPointer *> &local_vec)
|
|
|
|
{
|
|
|
|
PointerUpdater<VertexPointer> pu;
|
|
|
|
VertexIterator v_ret = AddVertices(m, n,pu);
|
|
|
|
|
|
|
|
typename std::vector<VertexPointer *>::iterator vi;
|
|
|
|
for(vi=local_vec.begin();vi!=local_vec.end();++vi)
|
|
|
|
pu.Update(**vi);
|
|
|
|
return v_ret;
|
|
|
|
}
|
2006-02-28 13:13:49 +01:00
|
|
|
|
2010-03-26 10:43:45 +01:00
|
|
|
/* ++++++++++ edges +++++++++++++ */
|
2012-10-15 10:17:26 +02:00
|
|
|
/** \brief Add n edges to the mesh.
|
|
|
|
Function to add n edges to the mesh.
|
|
|
|
The elements are added always to the end of the vector. No attempt of reusing previously deleted element is done.
|
|
|
|
\sa PointerUpdater
|
|
|
|
\param m the mesh to be modified
|
|
|
|
\param n the number of elements to be added
|
|
|
|
\param pu a PointerUpdater initialized so that it can be used to update pointers to edges that could have become invalid after this adding.
|
|
|
|
\retval the iterator to the first element added.
|
|
|
|
*/
|
|
|
|
static EdgeIterator AddEdges(MeshType &m,int n, PointerUpdater<EdgePointer> &pu)
|
2008-11-12 16:46:16 +01:00
|
|
|
{
|
|
|
|
EdgeIterator last;
|
|
|
|
if(n == 0) return m.edge.end();
|
|
|
|
pu.Clear();
|
|
|
|
if(m.edge.empty()) pu.oldBase=0; // if the vector is empty we cannot find the last valid element
|
2008-11-26 18:46:31 +01:00
|
|
|
else {
|
|
|
|
pu.oldBase=&*m.edge.begin();
|
|
|
|
pu.oldEnd=&m.edge.back()+1;
|
|
|
|
}
|
2008-11-12 16:46:16 +01:00
|
|
|
|
|
|
|
m.edge.resize(m.edge.size()+n);
|
|
|
|
m.en+=n;
|
|
|
|
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<typename MeshType::PointerToAttribute>::iterator ai;
|
2009-07-29 14:46:46 +02:00
|
|
|
for(ai = m.edge_attr.begin(); ai != m.edge_attr.end(); ++ai)
|
2010-03-15 16:17:20 +01:00
|
|
|
((typename MeshType::PointerToAttribute)(*ai)).Resize(m.edge.size());
|
2008-11-12 16:46:16 +01:00
|
|
|
|
|
|
|
pu.newBase = &*m.edge.begin();
|
|
|
|
pu.newEnd = &m.edge.back()+1;
|
2010-04-26 16:49:42 +02:00
|
|
|
if(pu.NeedUpdate())
|
2008-11-12 16:46:16 +01:00
|
|
|
{
|
|
|
|
FaceIterator fi;
|
2008-11-26 18:46:31 +01:00
|
|
|
for (fi=m.face.begin(); fi!=m.face.end(); ++fi){
|
2010-04-26 16:49:42 +02:00
|
|
|
//if(HasFHEAdjacency(m))
|
|
|
|
// pu.Update((*fi).FHEp());
|
2008-11-12 16:46:16 +01:00
|
|
|
if(!(*fi).IsD())
|
|
|
|
for(int i=0; i < (*fi).VN(); ++i)
|
|
|
|
if ((*fi).cFEp(i)!=0) pu.Update((*fi).FEp(i));
|
2008-11-26 18:46:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VertexIterator vi;
|
2010-04-26 16:49:42 +02:00
|
|
|
if(HasVEAdjacency(m))
|
|
|
|
for (vi=m.vert.begin(); vi!=m.vert.end(); ++vi)
|
2008-11-26 18:46:31 +01:00
|
|
|
if(!(*vi).IsD())
|
2010-04-26 16:49:42 +02:00
|
|
|
if ((*vi).cVEp()!=0) pu.Update((*vi).VEp());
|
|
|
|
|
|
|
|
HEdgeIterator hi;
|
|
|
|
if(HasHEAdjacency(m))
|
|
|
|
for (hi=m.hedge.begin(); hi!=m.hedge.end(); ++hi)
|
|
|
|
if(!(*hi).IsD())
|
|
|
|
if ((*hi).cHEp()!=0) pu.Update((*hi).HEp());
|
|
|
|
|
|
|
|
|
2008-11-26 18:46:31 +01:00
|
|
|
|
2008-11-12 16:46:16 +01:00
|
|
|
}
|
|
|
|
unsigned int siz=(unsigned int)m.edge.size()-n;
|
|
|
|
|
|
|
|
last = m.edge.begin();
|
|
|
|
advance(last,siz);
|
|
|
|
|
|
|
|
return last;// deve restituire l'iteratore alla prima faccia aggiunta;
|
|
|
|
}
|
|
|
|
|
2012-10-26 00:53:33 +02:00
|
|
|
/** Function to add n edges to the mesh.
|
2008-11-12 16:46:16 +01:00
|
|
|
First wrapper, with no parameters
|
|
|
|
*/
|
|
|
|
static EdgeIterator AddEdges(MeshType &m, int n)
|
|
|
|
{
|
|
|
|
PointerUpdater<EdgePointer> pu;
|
|
|
|
return AddEdges(m, n,pu);
|
|
|
|
}
|
|
|
|
|
2012-10-26 00:53:33 +02:00
|
|
|
/** Function to add n edges to the mesh.
|
2008-11-12 16:46:16 +01:00
|
|
|
Second Wrapper, with a vector of vertex pointers to be updated.
|
|
|
|
*/
|
2008-11-26 18:46:31 +01:00
|
|
|
static EdgeIterator AddEdges(MeshType &m, int n, std::vector<EdgePointer*> &local_vec)
|
2008-11-12 16:46:16 +01:00
|
|
|
{
|
|
|
|
PointerUpdater<EdgePointer> pu;
|
|
|
|
EdgeIterator v_ret = AddEdges(m, n,pu);
|
|
|
|
|
|
|
|
typename std::vector<EdgePointer *>::iterator ei;
|
|
|
|
for(ei=local_vec.begin();ei!=local_vec.end();++ei)
|
|
|
|
pu.Update(**ei);
|
|
|
|
return v_ret;
|
|
|
|
}
|
|
|
|
|
2006-09-29 16:40:22 +02:00
|
|
|
|
2010-03-26 10:43:45 +01:00
|
|
|
/* ++++++++++ hedges +++++++++++++ */
|
2012-10-26 08:16:15 +02:00
|
|
|
/** Function to add n halfedges to the mesh. The second parameter hold a vector of
|
2010-03-25 17:50:10 +01:00
|
|
|
pointers to pointer to elements of the mesh that should be updated after a
|
|
|
|
possible vector realloc.
|
2012-10-26 08:16:15 +02:00
|
|
|
\sa PointerUpdater
|
|
|
|
\param m the mesh to be modified
|
|
|
|
\param n the number of elements to be added
|
|
|
|
\param pu a PointerUpdater initialized so that it can be used to update pointers to edges that could have become invalid after this adding.
|
|
|
|
\retval the iterator to the first element added.
|
2010-03-25 17:50:10 +01:00
|
|
|
*/
|
|
|
|
static HEdgeIterator AddHEdges(MeshType &m,int n, PointerUpdater<HEdgePointer> &pu)
|
|
|
|
{
|
|
|
|
HEdgeIterator last;
|
|
|
|
if(n == 0) return m.hedge.end();
|
|
|
|
pu.Clear();
|
|
|
|
if(m.hedge.empty()) pu.oldBase=0; // if the vector is empty we cannot find the last valid element
|
|
|
|
else {
|
|
|
|
pu.oldBase=&*m.hedge.begin();
|
|
|
|
pu.oldEnd=&m.hedge.back()+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m.hedge.resize(m.hedge.size()+n);
|
|
|
|
m.hn+=n;
|
|
|
|
|
|
|
|
pu.newBase = &*m.hedge.begin();
|
|
|
|
pu.newEnd = &m.hedge.back()+1;
|
|
|
|
|
2010-04-26 16:49:42 +02:00
|
|
|
if(pu.NeedUpdate())
|
|
|
|
{
|
|
|
|
int ii = 0;
|
|
|
|
FaceIterator fi;
|
|
|
|
for (fi=m.face.begin(); fi!=m.face.end(); ++fi)
|
|
|
|
{
|
|
|
|
if(HasFHAdjacency(m))
|
|
|
|
if(!(*fi).IsD() && (*fi).FHp())
|
2010-06-16 17:17:42 +02:00
|
|
|
pu.Update((*fi).FHp());
|
2010-04-26 16:49:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
VertexIterator vi;
|
|
|
|
for (vi=m.vert.begin(); vi!=m.vert.end(); ++vi)
|
|
|
|
if(HasVHAdjacency(m))
|
|
|
|
if(!(*vi).IsD())
|
|
|
|
if ((*vi).cVHp()!=0)
|
|
|
|
pu.Update((*vi).VHp());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
EdgeIterator ei;
|
|
|
|
for (ei=m.edge.begin(); ei!=m.edge.end(); ++ei)
|
|
|
|
if(HasEHAdjacency(m))
|
|
|
|
if(!(*ei).IsD())
|
|
|
|
if ((*ei).cEHp()!=0)
|
|
|
|
pu.Update((*ei).EHp());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
HEdgeIterator hi = m.hedge.begin();
|
|
|
|
while(ii < m.hn - n)// cycle on all the faces except the new ones
|
|
|
|
{
|
|
|
|
if(!(*hi).IsD())
|
|
|
|
{
|
|
|
|
if(HasHNextAdjacency(m)) pu.Update((*hi).HNp());
|
|
|
|
if(HasHPrevAdjacency(m)) pu.Update((*hi).HPp());
|
|
|
|
if(HasHOppAdjacency(m)) pu.Update((*hi).HOp());
|
|
|
|
++ii;
|
|
|
|
}
|
|
|
|
|
|
|
|
++hi;
|
|
|
|
}
|
|
|
|
}
|
2010-03-25 17:50:10 +01:00
|
|
|
}
|
2010-04-26 16:49:42 +02:00
|
|
|
unsigned int siz = (unsigned int)m.hedge.size()-n;
|
2010-03-25 17:50:10 +01:00
|
|
|
|
|
|
|
last = m.hedge.begin();
|
|
|
|
advance(last,siz);
|
|
|
|
|
|
|
|
return last;// deve restituire l'iteratore alla prima faccia aggiunta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Function to add n vertices to the mesh.
|
|
|
|
First wrapper, with no parameters
|
|
|
|
*/
|
|
|
|
static HEdgeIterator AddHEdges(MeshType &m, int n)
|
|
|
|
{
|
|
|
|
PointerUpdater<HEdgePointer> pu;
|
|
|
|
return AddHEdges(m, n,pu);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Function to add n vertices to the mesh.
|
|
|
|
Second Wrapper, with a vector of vertex pointers to be updated.
|
|
|
|
*/
|
|
|
|
static HEdgeIterator AddHEdges(MeshType &m, int n, std::vector<HEdgePointer*> &local_vec)
|
|
|
|
{
|
|
|
|
PointerUpdater<HEdgePointer> pu;
|
|
|
|
HEdgeIterator v_ret = AddHEdges(m, n,pu);
|
|
|
|
|
|
|
|
typename std::vector<HEdgePointer *>::iterator ei;
|
|
|
|
for(ei=local_vec.begin();ei!=local_vec.end();++ei)
|
|
|
|
pu.Update(**ei);
|
|
|
|
return v_ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
/** Function to add n faces to the mesh.
|
2006-09-29 16:40:22 +02:00
|
|
|
First wrapper, with no parameters
|
2006-02-28 13:13:49 +01:00
|
|
|
*/
|
2006-09-29 16:40:22 +02:00
|
|
|
static FaceIterator AddFaces(MeshType &m, int n)
|
2006-02-28 13:13:49 +01:00
|
|
|
{
|
|
|
|
PointerUpdater<FacePointer> pu;
|
2006-09-29 16:40:22 +02:00
|
|
|
return AddFaces(m,n,pu);
|
2006-02-28 13:13:49 +01:00
|
|
|
}
|
|
|
|
|
2006-09-29 16:40:22 +02:00
|
|
|
/** Function to add n faces to the mesh.
|
|
|
|
Second Wrapper, with a vector of face pointer to be updated.
|
2006-02-28 13:13:49 +01:00
|
|
|
*/
|
2006-09-29 16:40:22 +02:00
|
|
|
static FaceIterator AddFaces(MeshType &m, int n,std::vector<FacePointer *> &local_vec)
|
2006-02-28 13:13:49 +01:00
|
|
|
{
|
|
|
|
PointerUpdater<FacePointer> pu;
|
2006-09-29 17:11:41 +02:00
|
|
|
FaceIterator f_ret= AddFaces(m,n,pu);
|
|
|
|
|
2006-10-02 11:31:47 +02:00
|
|
|
typename std::vector<FacePointer *>::iterator fi;
|
|
|
|
for(fi=local_vec.begin();fi!=local_vec.end();++fi)
|
|
|
|
pu.Update(**fi);
|
2006-09-29 17:11:41 +02:00
|
|
|
return f_ret;
|
2006-02-28 13:13:49 +01:00
|
|
|
}
|
2006-09-29 16:40:22 +02:00
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
/** Function to add n faces to the mesh.
|
2006-11-28 23:34:28 +01:00
|
|
|
This is the only full featured function that is able to manage correctly all the internal pointers of the mesh (ff and vf relations).
|
2006-09-29 16:40:22 +02:00
|
|
|
NOTE: THIS FUNCTION ALSO UPDATE FN
|
2006-02-28 13:13:49 +01:00
|
|
|
*/
|
|
|
|
static FaceIterator AddFaces(MeshType &m, int n, PointerUpdater<FacePointer> &pu)
|
|
|
|
{
|
2008-10-08 11:10:53 +02:00
|
|
|
FaceIterator last, fi;
|
2008-07-29 15:20:44 +02:00
|
|
|
if(n == 0) return m.face.end();
|
2006-02-28 13:13:49 +01:00
|
|
|
pu.Clear();
|
|
|
|
if(m.face.empty()) {
|
|
|
|
pu.oldBase=0; // if the vector is empty we cannot find the last valid element
|
|
|
|
} else {
|
|
|
|
pu.oldBase=&*m.face.begin();
|
2006-11-28 23:34:28 +01:00
|
|
|
pu.oldEnd=&m.face.back()+1;
|
2006-02-28 13:13:49 +01:00
|
|
|
last=m.face.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
m.face.resize(m.face.size()+n);
|
|
|
|
m.fn+=n;
|
|
|
|
|
2008-10-08 11:10:53 +02:00
|
|
|
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<PointerToAttribute>::iterator ai;
|
2008-05-15 18:32:27 +02:00
|
|
|
for(ai = m.face_attr.begin(); ai != m.face_attr.end(); ++ai)
|
2010-03-15 16:17:20 +01:00
|
|
|
((PointerToAttribute)(*ai)).Resize(m.face.size());
|
2008-05-15 18:32:27 +02:00
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
pu.newBase = &*m.face.begin();
|
2008-11-12 16:46:16 +01:00
|
|
|
pu.newEnd = &m.face.back()+1;
|
2006-11-29 16:58:50 +01:00
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
if(pu.NeedUpdate())
|
|
|
|
{
|
2008-10-08 11:10:53 +02:00
|
|
|
int ii = 0;
|
|
|
|
FaceIterator fi = m.face.begin();
|
2008-11-26 18:46:31 +01:00
|
|
|
while(ii<m.fn-n) // cycle on all the faces except the new ones
|
2008-10-08 11:10:53 +02:00
|
|
|
{
|
2006-02-28 13:13:49 +01:00
|
|
|
if(!(*fi).IsD())
|
|
|
|
{
|
2006-10-27 13:06:29 +02:00
|
|
|
if(HasFFAdjacency(m))
|
2008-10-08 11:10:53 +02:00
|
|
|
for(int i = 0; i < (*fi).VN(); ++i)
|
|
|
|
if ((*fi).cFFp(i)!=0) pu.Update((*fi).FFp(i));
|
|
|
|
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) && HasPerFaceVFAdjacency(m))
|
2008-10-08 11:10:53 +02:00
|
|
|
for(int i = 0; i < (*fi).VN(); ++i)
|
|
|
|
if ((*fi).cVFp(i)!=0) pu.Update((*fi).VFp(i));
|
2008-11-07 16:36:19 +01:00
|
|
|
++ii;
|
|
|
|
}
|
2008-10-08 11:10:53 +02:00
|
|
|
++fi;
|
2006-02-28 13:13:49 +01:00
|
|
|
}
|
|
|
|
VertexIterator vi;
|
|
|
|
for (vi=m.vert.begin(); vi!=m.vert.end(); ++vi)
|
|
|
|
if(!(*vi).IsD())
|
|
|
|
{
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) && HasPerFaceVFAdjacency(m))
|
2006-02-28 13:13:49 +01:00
|
|
|
if ((*vi).cVFp()!=0)
|
|
|
|
pu.Update((FaceType * &)(*vi).VFp());
|
|
|
|
// Note the above cast is probably not useful if you have correctly defined
|
|
|
|
// your vertex type with the correct name of the facetype as a template argument;
|
|
|
|
// pu.Update((FaceType*)(*vi).VFp()); compiles on old gcc and borland
|
|
|
|
// pu.Update((*vi).VFp()); compiles on .net and newer gcc
|
|
|
|
}
|
2008-11-12 16:46:16 +01:00
|
|
|
EdgeIterator ei;
|
|
|
|
for (ei=m.edge.begin(); ei!=m.edge.end(); ++ei)
|
|
|
|
if(!(*ei).IsD())
|
|
|
|
{
|
|
|
|
if(HasEFAdjacency(m))
|
|
|
|
if ((*ei).cEFp()!=0)
|
|
|
|
pu.Update((FaceType * &)(*ei).EFp());
|
|
|
|
// Note the above cast is probably not useful if you have correctly defined
|
|
|
|
// your vertex type with the correct name of the facetype as a template argument;
|
|
|
|
// pu.Update((FaceType*)(*vi).VFp()); compiles on old gcc and borland
|
|
|
|
// pu.Update((*vi).VFp()); compiles on .net and newer gcc
|
|
|
|
}
|
|
|
|
|
2010-03-25 17:50:10 +01:00
|
|
|
HEdgeIterator hi;
|
|
|
|
for (hi=m.hedge.begin(); hi!=m.hedge.end(); ++hi)
|
|
|
|
if(!(*hi).IsD())
|
|
|
|
{
|
|
|
|
if(HasHFAdjacency(m))
|
|
|
|
if ((*hi).cHFp()!=0)
|
|
|
|
pu.Update((FaceType * &)(*hi).HFp());
|
|
|
|
// Note the above cast is probably not useful if you have correctly defined
|
|
|
|
// your vertex type with the correct name of the facetype as a template argument;
|
|
|
|
// pu.Update((FaceType*)(*vi).VFp()); compiles on old gcc and borland
|
|
|
|
// pu.Update((*vi).VFp()); compiles on .net and newer gcc
|
|
|
|
}
|
2006-02-28 13:13:49 +01:00
|
|
|
|
2006-02-28 13:22:48 +01:00
|
|
|
}
|
|
|
|
unsigned int siz=(unsigned int)m.face.size()-n;
|
|
|
|
last = m.face.begin();
|
|
|
|
advance(last,siz);
|
2006-02-28 13:13:49 +01:00
|
|
|
return last;
|
|
|
|
}
|
|
|
|
|
2007-10-16 18:46:53 +02:00
|
|
|
/** Function to delete a face from the mesh.
|
|
|
|
NOTE: THIS FUNCTION ALSO UPDATE FN
|
|
|
|
*/
|
|
|
|
static void DeleteFace(MeshType &m, FaceType &f)
|
|
|
|
{
|
2012-03-31 01:43:04 +02:00
|
|
|
assert(&f >= &m.face.front() && &f <= &m.face.back());
|
2007-10-16 18:46:53 +02:00
|
|
|
assert(!f.IsD());
|
|
|
|
f.SetD();
|
|
|
|
--m.fn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Function to delete a vertex from the mesh.
|
|
|
|
NOTE: THIS FUNCTION ALSO UPDATE vn
|
|
|
|
*/
|
|
|
|
static void DeleteVertex(MeshType &m, VertexType &v)
|
|
|
|
{
|
2012-03-31 01:43:04 +02:00
|
|
|
assert(&v >= &m.vert.front() && &v <= &m.vert.back());
|
2007-10-16 18:46:53 +02:00
|
|
|
assert(!v.IsD());
|
|
|
|
v.SetD();
|
|
|
|
--m.vn;
|
|
|
|
}
|
2008-11-12 16:46:16 +01:00
|
|
|
|
2010-03-25 17:50:10 +01:00
|
|
|
/** Function to delete an edge from the mesh.
|
|
|
|
NOTE: THIS FUNCTION ALSO UPDATE en
|
|
|
|
*/
|
2012-03-31 01:43:04 +02:00
|
|
|
static void DeleteEdge(MeshType &m, EdgeType &e)
|
2010-03-25 17:50:10 +01:00
|
|
|
{
|
2012-03-31 01:43:04 +02:00
|
|
|
assert(&e >= &m.edge.front() && &e <= &m.edge.back());
|
|
|
|
assert(!e.IsD());
|
|
|
|
e.SetD();
|
|
|
|
--m.en;
|
2010-03-25 17:50:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Function to delete a hedge from the mesh.
|
2008-11-12 16:46:16 +01:00
|
|
|
NOTE: THIS FUNCTION ALSO UPDATE en
|
|
|
|
*/
|
2010-04-26 16:49:42 +02:00
|
|
|
static void DeleteHEdge(MeshType &m, HEdgeType &h)
|
2008-11-12 16:46:16 +01:00
|
|
|
{
|
2010-04-26 16:49:42 +02:00
|
|
|
assert(!h.IsD());
|
|
|
|
h.SetD();
|
2010-03-25 17:50:10 +01:00
|
|
|
--m.hn;
|
2008-11-12 16:46:16 +01:00
|
|
|
}
|
2007-12-11 12:36:03 +01:00
|
|
|
|
2009-12-07 10:05:20 +01:00
|
|
|
/*
|
|
|
|
Function to rearrange the vertex vector according to a given index permutation
|
|
|
|
the permutation is vector such that after calling this function
|
2008-04-18 19:45:23 +02:00
|
|
|
|
2009-12-07 10:05:20 +01:00
|
|
|
m.vert[ newVertIndex[i] ] = m.vert[i];
|
2007-12-11 12:36:03 +01:00
|
|
|
|
2009-12-07 10:05:20 +01:00
|
|
|
e.g. newVertIndex[i] is the new index of the vertex i
|
2007-10-16 18:46:53 +02:00
|
|
|
|
2009-12-07 10:05:20 +01:00
|
|
|
*/
|
2010-10-22 18:01:58 +02:00
|
|
|
static void PermutateVertexVector(MeshType &m, PointerUpdater<VertexPointer> &pu)
|
2009-12-07 10:05:20 +01:00
|
|
|
{
|
2012-10-31 07:58:08 +01:00
|
|
|
if(m.vert.empty()) return;
|
|
|
|
for(unsigned int i=0;i<m.vert.size();++i)
|
2007-12-11 12:36:03 +01:00
|
|
|
{
|
2010-10-22 18:01:58 +02:00
|
|
|
if(pu.remap[i]<size_t(m.vn))
|
2010-02-22 18:37:51 +01:00
|
|
|
{
|
|
|
|
assert(!m.vert[i].IsD());
|
2010-10-22 18:01:58 +02:00
|
|
|
m.vert[ pu.remap [i] ].ImportData(m.vert[i]);
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) &&HasPerFaceVFAdjacency(m) )
|
2010-02-22 18:37:51 +01:00
|
|
|
if (m.vert[i].cVFp()!=0)
|
|
|
|
{
|
2010-10-22 18:01:58 +02:00
|
|
|
m.vert[ pu.remap[i] ].VFp() = m.vert[i].cVFp();
|
|
|
|
m.vert[ pu.remap[i] ].VFi() = m.vert[i].cVFi();
|
2010-02-22 18:37:51 +01:00
|
|
|
}
|
|
|
|
}
|
2007-12-11 12:36:03 +01:00
|
|
|
}
|
2010-11-09 09:27:44 +01:00
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
// reorder the optional atttributes in m.vert_attr to reflect the changes
|
2010-10-22 18:01:58 +02:00
|
|
|
ReorderAttribute(m.vert_attr,pu.remap,m);
|
2008-05-15 18:32:27 +02:00
|
|
|
|
2010-10-22 18:01:58 +02:00
|
|
|
// setup the pointer updater
|
|
|
|
pu.oldBase = &m.vert[0];
|
|
|
|
pu.oldEnd = &m.vert.back()+1;
|
|
|
|
|
|
|
|
// resize
|
2007-12-11 12:36:03 +01:00
|
|
|
m.vert.resize(m.vn);
|
2010-10-22 18:01:58 +02:00
|
|
|
|
|
|
|
// setup the pointer updater
|
|
|
|
pu.newBase = (m.vert.empty())?0:&m.vert[0];
|
|
|
|
pu.newEnd = (m.vert.empty())?0:&m.vert.back()+1;
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
|
|
|
|
// resize the optional atttributes in m.vert_attr to reflect the changes
|
|
|
|
ResizeAttribute(m.vert_attr,m.vn,m);
|
|
|
|
|
2011-05-31 10:28:40 +02:00
|
|
|
// Loop on the face to update the pointers FV relation (vertex refs)
|
|
|
|
for(FaceIterator fi=m.face.begin();fi!=m.face.end();++fi)
|
2007-12-11 12:36:03 +01:00
|
|
|
if(!(*fi).IsD())
|
2009-12-07 10:05:20 +01:00
|
|
|
for(unsigned int i=0;i<3;++i)
|
2007-12-11 12:36:03 +01:00
|
|
|
{
|
2010-10-22 18:01:58 +02:00
|
|
|
size_t oldIndex = (*fi).V(i) - pu.oldBase;
|
|
|
|
assert(pu.oldBase <= (*fi).V(i) && oldIndex < pu.remap.size());
|
|
|
|
(*fi).V(i) = pu.newBase+pu.remap[oldIndex];
|
2007-12-11 12:36:03 +01:00
|
|
|
}
|
2011-05-31 10:28:40 +02:00
|
|
|
// Loop on the edges to update the pointers EV relation
|
|
|
|
if(HasEVAdjacency(m))
|
|
|
|
for(EdgeIterator ei=m.edge.begin();ei!=m.edge.end();++ei)
|
|
|
|
if(!(*ei).IsD())
|
|
|
|
for(unsigned int i=0;i<2;++i)
|
|
|
|
{
|
|
|
|
pu.Update((*ei).V(i));
|
|
|
|
}
|
2009-12-07 10:05:20 +01:00
|
|
|
}
|
2010-10-22 18:01:58 +02:00
|
|
|
|
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*!
|
|
|
|
\brief Compact vector of vertices removing deleted elements.
|
|
|
|
Deleted elements are put to the end of the vector and the vector is resized. Order between elements is preserved but not their position (hence the PointerUpdater)
|
|
|
|
After calling this function the \c IsD() test in the scanning a vector, is no more necessary.
|
|
|
|
|
|
|
|
\warning It should not be called when TemporaryData is active (but works correctly if attributes are present)
|
2009-12-07 10:05:20 +01:00
|
|
|
*/
|
2012-10-26 08:16:15 +02:00
|
|
|
static void CompactVertexVector( MeshType &m, PointerUpdater<VertexPointer> &pu )
|
2009-12-07 10:05:20 +01:00
|
|
|
{
|
|
|
|
// If already compacted fast return please!
|
|
|
|
if(m.vn==(int)m.vert.size()) return;
|
|
|
|
|
|
|
|
// newVertIndex [ <old_vert_position> ] gives you the new position of the vertex in the vector;
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.remap.resize( m.vert.size(),std::numeric_limits<size_t>::max() );
|
2009-12-07 10:05:20 +01:00
|
|
|
|
|
|
|
size_t pos=0;
|
|
|
|
size_t i=0;
|
|
|
|
|
|
|
|
for(i=0;i<m.vert.size();++i)
|
|
|
|
{
|
|
|
|
if(!m.vert[i].IsD())
|
|
|
|
{
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.remap[i]=pos;
|
2009-12-07 10:05:20 +01:00
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert((int)pos==m.vn);
|
2010-10-22 18:01:58 +02:00
|
|
|
|
|
|
|
PermutateVertexVector(m, pu);
|
|
|
|
|
2007-12-11 12:36:03 +01:00
|
|
|
}
|
2008-03-11 10:22:07 +01:00
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*! \brief Wrapper without the PointerUpdater. */
|
2010-10-22 18:01:58 +02:00
|
|
|
static void CompactVertexVector( MeshType &m ) {
|
|
|
|
PointerUpdater<VertexPointer> pu;
|
|
|
|
CompactVertexVector(m,pu);
|
|
|
|
}
|
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*!
|
|
|
|
\brief Compact vector of edges removing deleted elements.
|
|
|
|
|
|
|
|
Deleted elements are put to the end of the vector and the vector is resized. Order between elements is preserved but not their position (hence the PointerUpdater)
|
|
|
|
After calling this function the \c IsD() test in the scanning a vector, is no more necessary.
|
2011-05-31 10:28:40 +02:00
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
\warning It should not be called when TemporaryData is active (but works correctly if attributes are present)
|
|
|
|
*/
|
|
|
|
static void CompactEdgeVector( MeshType &m, PointerUpdater<EdgePointer> &pu )
|
2011-05-31 10:28:40 +02:00
|
|
|
{
|
|
|
|
// If already compacted fast return please!
|
|
|
|
if(m.en==(int)m.edge.size()) return;
|
|
|
|
|
|
|
|
// remap [ <old_edge_position> ] gives you the new position of the edge in the vector;
|
|
|
|
pu.remap.resize( m.edge.size(),std::numeric_limits<size_t>::max() );
|
|
|
|
|
|
|
|
size_t pos=0;
|
|
|
|
size_t i=0;
|
|
|
|
|
|
|
|
for(i=0;i<m.edge.size();++i)
|
|
|
|
{
|
|
|
|
if(!m.edge[i].IsD())
|
|
|
|
{
|
|
|
|
pu.remap[i]=pos;
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert((int)pos==m.en);
|
|
|
|
|
|
|
|
// the actual copying of the data.
|
|
|
|
for(unsigned int i=0;i<m.edge.size();++i)
|
|
|
|
{
|
2011-11-07 16:41:59 +01:00
|
|
|
if(pu.remap[i]<size_t(m.en)) // uninitialized entries in the remap vector has max_int value;
|
2011-05-31 10:28:40 +02:00
|
|
|
{
|
|
|
|
assert(!m.edge[i].IsD());
|
|
|
|
m.edge[ pu.remap [i] ].ImportData(m.edge[i]);
|
|
|
|
// copy the vertex reference (they are not data!)
|
|
|
|
m.edge[ pu.remap[i] ].V(0) = m.edge[i].cV(0);
|
|
|
|
m.edge[ pu.remap[i] ].V(1) = m.edge[i].cV(1);
|
|
|
|
// Now just copy the adjacency pointers (without changing them, to be done later)
|
|
|
|
if(HasPerVertexVEAdjacency(m) && HasPerEdgeVEAdjacency(m) )
|
|
|
|
if (m.edge[i].cVEp(0)!=0)
|
|
|
|
{
|
|
|
|
m.edge[ pu.remap[i] ].VEp(0) = m.edge[i].cVEp(0);
|
|
|
|
m.edge[ pu.remap[i] ].VEi(0) = m.edge[i].cVEi(0);
|
|
|
|
m.edge[ pu.remap[i] ].VEp(1) = m.edge[i].cVEp(1);
|
|
|
|
m.edge[ pu.remap[i] ].VEi(1) = m.edge[i].cVEi(1);
|
|
|
|
}
|
|
|
|
if(HasEEAdjacency(m))
|
|
|
|
if (m.edge[i].cEEp(0)!=0)
|
|
|
|
{
|
|
|
|
m.edge[ pu.remap[i] ].EEp(0) = m.edge[i].cEEp(0);
|
|
|
|
m.edge[ pu.remap[i] ].EEi(0) = m.edge[i].cEEi(0);
|
|
|
|
m.edge[ pu.remap[i] ].EEp(1) = m.edge[i].cEEp(1);
|
|
|
|
m.edge[ pu.remap[i] ].EEi(1) = m.edge[i].cEEi(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reorder the optional attributes in m.vert_attr to reflect the changes
|
|
|
|
ReorderAttribute(m.edge_attr, pu.remap,m);
|
|
|
|
|
|
|
|
// setup the pointer updater
|
|
|
|
pu.oldBase = &m.edge[0];
|
|
|
|
pu.oldEnd = &m.edge.back()+1;
|
|
|
|
|
|
|
|
// THE resize
|
|
|
|
m.edge.resize(m.en);
|
|
|
|
|
|
|
|
// setup the pointer updater
|
|
|
|
pu.newBase = (m.edge.empty())?0:&m.edge[0];
|
|
|
|
pu.newEnd = (m.edge.empty())?0:&m.edge.back()+1;
|
|
|
|
|
|
|
|
// resize the optional atttributes in m.vert_attr to reflect the changes
|
|
|
|
ResizeAttribute(m.edge_attr,m.en,m);
|
|
|
|
|
|
|
|
// Loop on the vertices to update the pointers of VE relation
|
|
|
|
if(HasPerVertexVEAdjacency(m) &&HasPerEdgeVEAdjacency(m))
|
|
|
|
for (VertexIterator vi=m.vert.begin(); vi!=m.vert.end(); ++vi)
|
|
|
|
if(!(*vi).IsD()) pu.Update((*vi).VEp());
|
|
|
|
|
|
|
|
// Loop on the edges to update the pointers EE VE relation
|
|
|
|
for(EdgeIterator ei=m.edge.begin();ei!=m.edge.end();++ei)
|
|
|
|
for(unsigned int i=0;i<2;++i)
|
|
|
|
{
|
|
|
|
if(HasPerVertexVEAdjacency(m) &&HasPerEdgeVEAdjacency(m))
|
|
|
|
pu.Update((*ei).VEp(i));
|
|
|
|
if(HasEEAdjacency(m))
|
|
|
|
pu.Update((*ei).EEp(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*! \brief Wrapper without the PointerUpdater. */
|
2011-05-31 10:28:40 +02:00
|
|
|
static void CompactEdgeVector( MeshType &m ) {
|
|
|
|
PointerUpdater<EdgePointer> pu;
|
|
|
|
CompactEdgeVector(m,pu);
|
|
|
|
}
|
2010-10-22 18:01:58 +02:00
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*!
|
|
|
|
\brief Compact vector of faces removing deleted elements.
|
|
|
|
|
|
|
|
Deleted elements are put to the end of the vector and the vector is resized. Order between elements is preserved but not their position (hence the PointerUpdater)
|
|
|
|
After calling this function the \c IsD() test in the scanning a vector, is no more necessary.
|
|
|
|
\warning It should not be called when TemporaryData is active (but works correctly if attributes are present)
|
2008-03-11 10:22:07 +01:00
|
|
|
*/
|
2012-10-26 08:16:15 +02:00
|
|
|
static void CompactFaceVector( MeshType &m, PointerUpdater<FacePointer> &pu )
|
2008-03-11 10:22:07 +01:00
|
|
|
{
|
2008-04-18 19:45:23 +02:00
|
|
|
// If already compacted fast return please!
|
2008-06-30 00:44:44 +02:00
|
|
|
if(m.fn==(int)m.face.size()) return;
|
2008-04-18 19:45:23 +02:00
|
|
|
|
2008-03-11 10:22:07 +01:00
|
|
|
// newFaceIndex [ <old_face_position> ] gives you the new position of the face in the vector;
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.remap.resize( m.face.size(),std::numeric_limits<size_t>::max() );
|
2008-03-11 10:22:07 +01:00
|
|
|
|
|
|
|
size_t pos=0;
|
|
|
|
size_t i=0;
|
|
|
|
|
|
|
|
for(i=0;i<m.face.size();++i)
|
|
|
|
{
|
|
|
|
if(!m.face[i].IsD())
|
|
|
|
{
|
|
|
|
if(pos!=i)
|
2010-02-19 01:21:26 +01:00
|
|
|
{
|
2010-06-16 17:17:42 +02:00
|
|
|
m.face[pos].ImportData(m.face[i]);
|
2010-02-19 01:21:26 +01:00
|
|
|
m.face[pos].V(0) = m.face[i].V(0);
|
|
|
|
m.face[pos].V(1) = m.face[i].V(1);
|
|
|
|
m.face[pos].V(2) = m.face[i].V(2);
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) && HasPerFaceVFAdjacency(m))
|
2010-02-22 18:37:51 +01:00
|
|
|
for(int j=0;j<3;++j)
|
|
|
|
if (m.face[i].cVFp(j)!=0) {
|
|
|
|
m.face[pos].VFp(j) = m.face[i].cVFp(j);
|
|
|
|
m.face[pos].VFi(j) = m.face[i].cVFi(j);
|
|
|
|
}
|
|
|
|
if(HasFFAdjacency(m))
|
|
|
|
for(int j=0;j<3;++j)
|
|
|
|
if (m.face[i].cFFp(j)!=0) {
|
|
|
|
m.face[pos].FFp(j) = m.face[i].cFFp(j);
|
|
|
|
m.face[pos].FFi(j) = m.face[i].cFFi(j);
|
|
|
|
}
|
2010-02-19 01:21:26 +01:00
|
|
|
}
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.remap[i]=pos;
|
2008-03-11 10:22:07 +01:00
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
2008-06-30 00:44:44 +02:00
|
|
|
assert((int)pos==m.fn);
|
2010-11-09 09:27:44 +01:00
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
// reorder the optional atttributes in m.face_attr to reflect the changes
|
2010-10-22 18:01:58 +02:00
|
|
|
ReorderAttribute(m.face_attr,pu.remap,m);
|
2008-05-15 18:32:27 +02:00
|
|
|
|
2008-03-11 10:22:07 +01:00
|
|
|
// Loop on the vertices to correct VF relation
|
|
|
|
VertexIterator vi;
|
|
|
|
FacePointer fbase=&m.face[0];
|
|
|
|
for (vi=m.vert.begin(); vi!=m.vert.end(); ++vi)
|
|
|
|
if(!(*vi).IsD())
|
|
|
|
{
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) &&HasPerFaceVFAdjacency(m) )
|
2008-03-11 10:22:07 +01:00
|
|
|
if ((*vi).cVFp()!=0)
|
|
|
|
{
|
|
|
|
size_t oldIndex = (*vi).cVFp() - fbase;
|
2010-10-22 18:01:58 +02:00
|
|
|
assert(fbase <= (*vi).cVFp() && oldIndex < pu.remap.size());
|
|
|
|
(*vi).VFp() = fbase+pu.remap[oldIndex];
|
2008-03-11 10:22:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-22 18:01:58 +02:00
|
|
|
|
2008-03-11 10:22:07 +01:00
|
|
|
// Loop on the faces to correct VF and FF relations
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.oldBase = &m.face[0];
|
|
|
|
pu.oldEnd = &m.face.back()+1;
|
2008-03-11 10:22:07 +01:00
|
|
|
m.face.resize(m.fn);
|
2010-10-22 18:01:58 +02:00
|
|
|
pu.newBase = (m.face.empty())?0:&m.face[0];
|
|
|
|
pu.newEnd = (m.face.empty())?0:&m.face.back()+1;
|
|
|
|
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
// resize the optional atttributes in m.face_attr to reflect the changes
|
2010-10-08 17:58:32 +02:00
|
|
|
ResizeAttribute(m.face_attr,m.fn,m);
|
2008-05-15 18:32:27 +02:00
|
|
|
|
2008-03-11 10:22:07 +01:00
|
|
|
FaceIterator fi;
|
|
|
|
for(fi=m.face.begin();fi!=m.face.end();++fi)
|
|
|
|
if(!(*fi).IsD())
|
|
|
|
{
|
2010-06-24 14:35:37 +02:00
|
|
|
if(HasPerVertexVFAdjacency(m) &&HasPerFaceVFAdjacency(m) )
|
2008-03-11 10:22:07 +01:00
|
|
|
for(i=0;i<3;++i)
|
|
|
|
if ((*fi).cVFp(i)!=0)
|
|
|
|
{
|
|
|
|
size_t oldIndex = (*fi).VFp(i) - fbase;
|
2010-10-22 18:01:58 +02:00
|
|
|
assert(fbase <= (*fi).VFp(i) && oldIndex < pu.remap.size());
|
|
|
|
(*fi).VFp(i) = fbase+pu.remap[oldIndex];
|
2008-03-11 10:22:07 +01:00
|
|
|
}
|
|
|
|
if(HasFFAdjacency(m))
|
|
|
|
for(i=0;i<3;++i)
|
|
|
|
if ((*fi).cFFp(i)!=0)
|
|
|
|
{
|
|
|
|
size_t oldIndex = (*fi).FFp(i) - fbase;
|
2010-10-22 18:01:58 +02:00
|
|
|
assert(fbase <= (*fi).FFp(i) && oldIndex < pu.remap.size());
|
|
|
|
(*fi).FFp(i) = fbase+pu.remap[oldIndex];
|
2008-03-11 10:22:07 +01:00
|
|
|
}
|
|
|
|
}
|
2010-10-22 18:01:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-03-11 10:22:07 +01:00
|
|
|
}
|
|
|
|
|
2012-10-26 08:16:15 +02:00
|
|
|
/*! \brief Wrapper without the PointerUpdater. */
|
2010-10-22 18:01:58 +02:00
|
|
|
static void CompactFaceVector( MeshType &m ) {
|
|
|
|
PointerUpdater<FacePointer> pu;
|
|
|
|
CompactFaceVector(m,pu);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
public:
|
2009-01-15 18:41:59 +01:00
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/*! \brief Check if an handle to a Per-Vertex Attribute is valid
|
|
|
|
*/
|
2009-01-15 18:41:59 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
bool IsValidHandle( MeshType & m, const typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE> & a){
|
2009-06-04 18:13:21 +02:00
|
|
|
if(a._handle == NULL) return false;
|
2009-07-29 14:46:46 +02:00
|
|
|
for(AttrIterator i = m.vert_attr.begin(); i!=m.vert_attr.end();++i)
|
2009-01-15 18:41:59 +01:00
|
|
|
if ( (*i).n_attr == a.n_attr ) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/*! \brief Add a Per-Vertex Attribute of the given ATTR_TYPE with the given name.
|
|
|
|
|
|
|
|
No attribute with that name must exists (even of different type)
|
|
|
|
*/
|
|
|
|
template <class ATTR_TYPE>
|
2008-05-15 18:32:27 +02:00
|
|
|
static
|
|
|
|
typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE>
|
|
|
|
AddPerVertexAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
PAIte i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h;
|
2008-05-15 18:32:27 +02:00
|
|
|
h._name = name;
|
|
|
|
if(!name.empty()){
|
|
|
|
i = m.vert_attr.find(h);
|
|
|
|
assert(i ==m.vert_attr.end() );// an attribute with this name exists
|
|
|
|
}
|
2011-06-01 15:39:31 +02:00
|
|
|
|
2009-07-29 14:46:46 +02:00
|
|
|
h._sizeof = sizeof(ATTR_TYPE);
|
|
|
|
h._padding = 0;
|
2011-06-01 15:39:31 +02:00
|
|
|
h._handle = new SimpleTempData<VertContainer,ATTR_TYPE>(m.vert);
|
2009-01-15 18:41:59 +01:00
|
|
|
m.attrn++;
|
|
|
|
h.n_attr = m.attrn;
|
2009-07-29 14:46:46 +02:00
|
|
|
std::pair < AttrIterator , bool> res = m.vert_attr.insert(h);
|
2009-01-15 18:41:59 +01:00
|
|
|
return typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE>(res.first->_handle,res.first->n_attr );
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
2012-10-15 10:17:26 +02:00
|
|
|
static typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE>
|
2008-05-15 18:32:27 +02:00
|
|
|
AddPerVertexAttribute( MeshType & m){
|
|
|
|
return AddPerVertexAttribute<ATTR_TYPE>(m,std::string(""));
|
|
|
|
}
|
|
|
|
|
2012-10-15 10:17:26 +02:00
|
|
|
/*! \brief Try to retrieve an handle to an attribute with a given name and ATTR_TYPE
|
|
|
|
\returns a invalid handle if no attribute with that name and type exists.
|
|
|
|
*/
|
2008-05-15 18:32:27 +02:00
|
|
|
template <class ATTR_TYPE>
|
2012-10-15 10:17:26 +02:00
|
|
|
static typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE>
|
|
|
|
GetPerVertexAttribute( MeshType & m, const std::string & name)
|
|
|
|
{
|
2011-12-15 08:23:51 +01:00
|
|
|
assert(!name.empty());
|
|
|
|
PointerToAttribute h1; h1._name = name;
|
|
|
|
typename std::set<PointerToAttribute > :: iterator i;
|
|
|
|
|
|
|
|
i =m.vert_attr.find(h1);
|
|
|
|
if(i!=m.vert_attr.end())
|
|
|
|
if((*i)._sizeof == sizeof(ATTR_TYPE) ){
|
|
|
|
if( (*i)._padding != 0 ){
|
|
|
|
PointerToAttribute attr = (*i); // copy the PointerToAttribute
|
|
|
|
m.vert_attr.erase(i); // remove it from the set
|
|
|
|
FixPaddedPerVertexAttribute<ATTR_TYPE>(m,attr);
|
|
|
|
std::pair<AttrIterator,bool> new_i = m.vert_attr.insert(attr); // insert the modified PointerToAttribute
|
|
|
|
assert(new_i.second);
|
|
|
|
i = new_i.first;
|
|
|
|
}
|
|
|
|
return typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE>((*i)._handle,(*i).n_attr);
|
2009-07-29 14:46:46 +02:00
|
|
|
}
|
2011-12-15 08:23:51 +01:00
|
|
|
return typename MeshType:: template PerVertexAttributeHandle<ATTR_TYPE>(NULL,0);
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
2010-06-16 17:17:42 +02:00
|
|
|
template <class ATTR_TYPE>
|
2011-10-05 17:04:40 +02:00
|
|
|
static void GetAllPerVertexAttribute(MeshType & m, std::vector<std::string> &all){
|
|
|
|
all.clear();
|
2010-07-01 11:13:08 +02:00
|
|
|
typename std::set<PointerToAttribute > ::const_iterator i;
|
2010-06-16 17:17:42 +02:00
|
|
|
for(i = m.vert_attr.begin(); i != m.vert_attr.end(); ++i )
|
2011-10-05 17:04:40 +02:00
|
|
|
if(!(*i)._name.empty())
|
|
|
|
{
|
|
|
|
typename MeshType:: template PerVertexAttributeHandle<ATTR_TYPE> hh;
|
|
|
|
hh = Allocator<MeshType>:: template GetPerVertexAttribute <ATTR_TYPE>(m,(*i)._name);
|
|
|
|
if(IsValidHandle<ATTR_TYPE>(m,hh))
|
|
|
|
all.push_back((*i)._name);
|
|
|
|
}
|
2010-06-16 17:17:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
void
|
|
|
|
DeletePerVertexAttribute( MeshType & m,typename MeshType::template PerVertexAttributeHandle<ATTR_TYPE> & h){
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-05-15 18:32:27 +02:00
|
|
|
for( i = m.vert_attr.begin(); i != m.vert_attr.end(); ++i)
|
|
|
|
if( (*i)._handle == h._handle ){
|
|
|
|
delete ((SimpleTempData<VertContainer,ATTR_TYPE>*)(*i)._handle);
|
|
|
|
m.vert_attr.erase(i);
|
|
|
|
return;}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
2011-11-15 12:05:35 +01:00
|
|
|
// Generic DeleteAttribute.
|
|
|
|
// It must not crash if you try to delete a non existing attribute,
|
|
|
|
// because you do not have a way of asking for a handle of an attribute for which you do not know the type.
|
2008-05-15 18:32:27 +02:00
|
|
|
static
|
2011-11-15 12:05:35 +01:00
|
|
|
bool DeletePerVertexAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
AttrIterator i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
2008-05-15 18:32:27 +02:00
|
|
|
i = m.vert_attr.find(h1);
|
2011-11-15 12:05:35 +01:00
|
|
|
if(i==m.vert_attr.end()) return false;
|
2011-06-01 15:39:31 +02:00
|
|
|
delete ((SimpleTempDataBase*)(*i)._handle);
|
2008-05-15 18:32:27 +02:00
|
|
|
m.vert_attr.erase(i);
|
2011-11-15 12:05:35 +01:00
|
|
|
return true;
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
2009-07-29 14:46:46 +02:00
|
|
|
|
|
|
|
|
2008-11-12 16:46:16 +01:00
|
|
|
/// Per Edge Attributes
|
2009-01-15 18:41:59 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
bool IsValidHandle( MeshType & m, const typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE> & a){
|
2009-06-04 18:13:21 +02:00
|
|
|
if(a._handle == NULL) return false;
|
2009-07-29 14:46:46 +02:00
|
|
|
for(AttrIterator i = m.edge_attr.begin(); i!=m.edge_attr.end();++i)
|
2009-01-15 18:41:59 +01:00
|
|
|
if ( (*i).n_attr == a.n_attr ) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-11-12 16:46:16 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE>
|
|
|
|
AddPerEdgeAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
PAIte i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h;
|
2008-11-12 16:46:16 +01:00
|
|
|
h._name = name;
|
|
|
|
if(!name.empty()){
|
|
|
|
i = m.edge_attr.find(h);
|
|
|
|
assert(i ==m.edge_attr.end() );// an attribute with this name exists
|
|
|
|
}
|
2010-06-16 17:17:42 +02:00
|
|
|
h._sizeof = sizeof(ATTR_TYPE);
|
2011-12-15 08:23:51 +01:00
|
|
|
h._padding = 0;
|
|
|
|
// h._typename = typeid(ATTR_TYPE).name();
|
|
|
|
h._handle = new SimpleTempData<EdgeContainer,ATTR_TYPE>(m.edge);
|
2009-01-15 18:41:59 +01:00
|
|
|
m.attrn++;
|
|
|
|
h.n_attr = m.attrn;
|
2009-07-29 14:46:46 +02:00
|
|
|
std::pair < AttrIterator , bool> res = m.edge_attr.insert(h);
|
2009-01-15 18:41:59 +01:00
|
|
|
return typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE>(res.first->_handle,res.first->n_attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
2011-10-25 12:03:10 +02:00
|
|
|
typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE>
|
2009-01-15 18:41:59 +01:00
|
|
|
AddPerEdgeAttribute( MeshType & m){
|
|
|
|
return AddPerEdgeAttribute<ATTR_TYPE>(m,std::string(""));
|
2008-11-12 16:46:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE>
|
2011-12-15 08:23:51 +01:00
|
|
|
GetPerEdgeAttribute( MeshType & m, const std::string & name){
|
|
|
|
assert(!name.empty());
|
|
|
|
PointerToAttribute h1; h1._name = name;
|
|
|
|
typename std::set<PointerToAttribute > ::const_iterator i;
|
|
|
|
|
|
|
|
i =m.edge_attr.find(h1);
|
|
|
|
if(i!=m.edge_attr.end())
|
|
|
|
if((*i)._sizeof == sizeof(ATTR_TYPE) ){
|
|
|
|
if( (*i)._padding != 0 ){
|
|
|
|
PointerToAttribute attr = (*i); // copy the PointerToAttribute
|
|
|
|
m.edge_attr.erase(i); // remove it from the set
|
|
|
|
FixPaddedPerEdgeAttribute<ATTR_TYPE>(m,attr);
|
|
|
|
std::pair<AttrIterator,bool> new_i = m.edge_attr.insert(attr); // insert the modified PointerToAttribute
|
|
|
|
assert(new_i.second);
|
|
|
|
i = new_i.first;
|
|
|
|
}
|
|
|
|
return typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE>((*i)._handle,(*i).n_attr);
|
|
|
|
}
|
|
|
|
// if((*i)._typename == typeid(ATTR_TYPE).name() )
|
|
|
|
// return typename MeshType:: template PerVertexAttributeHandle<ATTR_TYPE>(NULL,0);
|
2010-06-16 17:17:42 +02:00
|
|
|
|
2011-12-15 08:23:51 +01:00
|
|
|
return typename MeshType:: template PerEdgeAttributeHandle<ATTR_TYPE>(NULL,0);
|
2010-06-16 17:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static void GetAllPerEdgeAttribute(const MeshType & m, std::vector<std::string> &all){
|
|
|
|
typename std::set<PointerToAttribute > :: iterator i;
|
|
|
|
for(i = m.edge_attr.begin(); i != m.edge_attr.end(); ++i )
|
|
|
|
if((*i)._typename == typeid(ATTR_TYPE).name())
|
|
|
|
all.push_back((*i)._name);
|
2008-11-12 16:46:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
void
|
|
|
|
DeletePerEdgeAttribute( MeshType & m,typename MeshType::template PerEdgeAttributeHandle<ATTR_TYPE> & h){
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-11-12 16:46:16 +01:00
|
|
|
for( i = m.edge_attr.begin(); i != m.edge_attr.end(); ++i)
|
|
|
|
if( (*i)._handle == h._handle ){
|
|
|
|
delete ((SimpleTempData<FaceContainer,ATTR_TYPE>*)(*i)._handle);
|
|
|
|
m.edge_attr.erase(i);
|
|
|
|
return;}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
2011-11-15 12:05:35 +01:00
|
|
|
// Generic DeleteAttribute.
|
|
|
|
// It must not crash if you try to delete a non existing attribute,
|
|
|
|
// because you do not have a way of asking for a handle of an attribute for which you do not know the type.
|
2008-11-12 16:46:16 +01:00
|
|
|
static
|
2011-11-15 12:05:35 +01:00
|
|
|
bool DeletePerEdgeAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
AttrIterator i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
2008-11-12 16:46:16 +01:00
|
|
|
i = m.edge_attr.find(h1);
|
2011-11-15 12:05:35 +01:00
|
|
|
if(i==m.edge_attr.end()) return false;
|
|
|
|
delete ((SimpleTempDataBase*)(*i)._handle);
|
2008-11-12 16:46:16 +01:00
|
|
|
m.edge_attr.erase(i);
|
2011-11-15 12:05:35 +01:00
|
|
|
return true;
|
2008-11-12 16:46:16 +01:00
|
|
|
}
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
/// Per Face Attributes
|
2009-01-15 18:41:59 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
bool IsValidHandle( MeshType & m, const typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE> & a){
|
2009-06-04 18:13:21 +02:00
|
|
|
if(a._handle == NULL) return false;
|
2009-07-29 14:46:46 +02:00
|
|
|
for(AttrIterator i = m.face_attr.begin(); i!=m.face_attr.end();++i)
|
2009-01-15 18:41:59 +01:00
|
|
|
if ( (*i).n_attr == a.n_attr ) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE>
|
|
|
|
AddPerFaceAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
PAIte i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h;
|
2008-05-15 18:32:27 +02:00
|
|
|
h._name = name;
|
|
|
|
if(!name.empty()){
|
|
|
|
i = m.face_attr.find(h);
|
|
|
|
assert(i ==m.face_attr.end() );// an attribute with this name exists
|
|
|
|
}
|
2011-06-01 15:39:31 +02:00
|
|
|
|
2009-10-07 13:05:29 +02:00
|
|
|
h._sizeof = sizeof(ATTR_TYPE);
|
2010-09-01 19:16:43 +02:00
|
|
|
h._padding = 0;
|
2011-06-01 15:39:31 +02:00
|
|
|
h._handle = new SimpleTempData<FaceContainer,ATTR_TYPE>(m.face);
|
2009-01-15 18:41:59 +01:00
|
|
|
m.attrn++;
|
|
|
|
h.n_attr = m.attrn;
|
2009-07-29 14:46:46 +02:00
|
|
|
std::pair < AttrIterator , bool> res = m.face_attr.insert(h);
|
2009-01-15 18:41:59 +01:00
|
|
|
return typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE>(res.first->_handle,res.first->n_attr);
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
2009-01-15 18:41:59 +01:00
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE>
|
|
|
|
AddPerFaceAttribute( MeshType & m){
|
|
|
|
return AddPerFaceAttribute<ATTR_TYPE>(m,std::string(""));
|
|
|
|
}
|
|
|
|
|
2008-05-15 18:32:27 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE>
|
2009-10-07 13:05:29 +02:00
|
|
|
GetPerFaceAttribute( MeshType & m, const std::string & name){
|
2008-05-15 18:32:27 +02:00
|
|
|
assert(!name.empty());
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-05-15 18:32:27 +02:00
|
|
|
|
|
|
|
i =m.face_attr.find(h1);
|
2010-06-16 17:17:42 +02:00
|
|
|
if(i!=m.face_attr.end())
|
2010-09-04 00:17:14 +02:00
|
|
|
if((*i)._sizeof == sizeof(ATTR_TYPE) ){
|
2010-06-16 17:17:42 +02:00
|
|
|
if( (*i)._padding != 0 ){
|
|
|
|
PointerToAttribute attr = (*i); // copy the PointerToAttribute
|
|
|
|
m.face_attr.erase(i); // remove it from the set
|
|
|
|
FixPaddedPerFaceAttribute<ATTR_TYPE>(m,attr);
|
|
|
|
std::pair<AttrIterator,bool> new_i = m.face_attr.insert(attr); // insert the modified PointerToAttribute
|
|
|
|
assert(new_i.second);
|
|
|
|
i = new_i.first;
|
|
|
|
}
|
|
|
|
return typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE>((*i)._handle,(*i).n_attr);
|
2009-10-07 13:05:29 +02:00
|
|
|
}
|
2010-06-16 17:17:42 +02:00
|
|
|
return typename MeshType:: template PerFaceAttributeHandle<ATTR_TYPE>(NULL,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
2011-10-05 17:04:40 +02:00
|
|
|
static void GetAllPerFaceAttribute(MeshType & m, std::vector<std::string> &all){
|
|
|
|
all.clear();
|
2010-07-01 11:13:08 +02:00
|
|
|
typename std::set<PointerToAttribute > :: const_iterator i;
|
2010-06-16 17:17:42 +02:00
|
|
|
for(i = m.face_attr.begin(); i != m.face_attr.end(); ++i )
|
2011-10-05 17:04:40 +02:00
|
|
|
if(!(*i)._name.empty())
|
|
|
|
{
|
|
|
|
typename MeshType:: template PerFaceAttributeHandle<ATTR_TYPE> hh;
|
|
|
|
hh = Allocator<MeshType>:: template GetPerFaceAttribute <ATTR_TYPE>(m,(*i)._name);
|
|
|
|
if(IsValidHandle<ATTR_TYPE>(m,hh))
|
|
|
|
all.push_back((*i)._name);
|
|
|
|
}
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
void
|
|
|
|
DeletePerFaceAttribute( MeshType & m,typename MeshType::template PerFaceAttributeHandle<ATTR_TYPE> & h){
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-05-15 18:32:27 +02:00
|
|
|
for( i = m.face_attr.begin(); i != m.face_attr.end(); ++i)
|
|
|
|
if( (*i)._handle == h._handle ){
|
|
|
|
delete ((SimpleTempData<FaceContainer,ATTR_TYPE>*)(*i)._handle);
|
|
|
|
m.face_attr.erase(i);
|
|
|
|
return;}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
2011-11-15 12:05:35 +01:00
|
|
|
// Generic DeleteAttribute.
|
|
|
|
// It must not crash if you try to delete a non existing attribute,
|
|
|
|
// because you do not have a way of asking for a handle of an attribute for which you do not know the type.
|
2008-05-15 18:32:27 +02:00
|
|
|
static
|
2011-11-15 12:05:35 +01:00
|
|
|
bool DeletePerFaceAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
AttrIterator i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
2008-05-15 18:32:27 +02:00
|
|
|
i = m.face_attr.find(h1);
|
2011-11-15 12:05:35 +01:00
|
|
|
if(i==m.face_attr.end()) return false;
|
|
|
|
delete ((SimpleTempDataBase*)(*i)._handle);
|
2008-05-15 18:32:27 +02:00
|
|
|
m.face_attr.erase(i);
|
2011-11-15 12:05:35 +01:00
|
|
|
return true;
|
2008-05-15 18:32:27 +02:00
|
|
|
}
|
|
|
|
|
2008-06-23 16:18:13 +02:00
|
|
|
/// Per Mesh Attributes
|
2009-01-15 18:41:59 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
bool IsValidHandle( MeshType & m, const typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE> & a){
|
2009-06-04 18:13:21 +02:00
|
|
|
if(a._handle == NULL) return false;
|
2009-07-29 14:46:46 +02:00
|
|
|
for(AttrIterator i = m.mesh_attr.begin(); i!=m.mesh_attr.end();++i)
|
2009-01-15 18:41:59 +01:00
|
|
|
if ( (*i).n_attr == a.n_attr ) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-23 16:18:13 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE>
|
|
|
|
AddPerMeshAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
PAIte i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h;
|
2008-06-23 16:18:13 +02:00
|
|
|
h._name = name;
|
|
|
|
if(!name.empty()){
|
|
|
|
i = m.mesh_attr.find(h);
|
|
|
|
assert(i ==m.mesh_attr.end() );// an attribute with this name exists
|
|
|
|
}
|
2009-10-07 13:05:29 +02:00
|
|
|
h._sizeof = sizeof(ATTR_TYPE);
|
2010-09-01 19:16:43 +02:00
|
|
|
h._padding = 0;
|
2011-06-01 15:39:31 +02:00
|
|
|
h._handle = new Attribute<ATTR_TYPE>();
|
2009-01-15 18:41:59 +01:00
|
|
|
m.attrn++;
|
|
|
|
h.n_attr = m.attrn;
|
2009-07-29 14:46:46 +02:00
|
|
|
std::pair < AttrIterator , bool> res = m.mesh_attr.insert(h);
|
2009-01-15 18:41:59 +01:00
|
|
|
return typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE>(res.first->_handle,res.first->n_attr);
|
2008-06-23 16:18:13 +02:00
|
|
|
}
|
2009-10-07 13:05:29 +02:00
|
|
|
|
2008-06-23 16:18:13 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE>
|
2009-10-07 13:05:29 +02:00
|
|
|
GetPerMeshAttribute( MeshType & m, const std::string & name){
|
2008-06-23 16:18:13 +02:00
|
|
|
assert(!name.empty());
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-06-23 16:18:13 +02:00
|
|
|
|
|
|
|
i =m.mesh_attr.find(h1);
|
2010-06-16 17:17:42 +02:00
|
|
|
if(i!=m.mesh_attr.end())
|
2010-09-04 00:17:14 +02:00
|
|
|
if((*i)._sizeof == sizeof(ATTR_TYPE) ){
|
2010-06-16 17:17:42 +02:00
|
|
|
if( (*i)._padding != 0 ){
|
|
|
|
PointerToAttribute attr = (*i); // copy the PointerToAttribute
|
|
|
|
m.mesh_attr.erase(i); // remove it from the set
|
|
|
|
FixPaddedPerMeshAttribute<ATTR_TYPE>(m,attr);
|
|
|
|
std::pair<AttrIterator,bool> new_i = m.mesh_attr.insert(attr); // insert the modified PointerToAttribute
|
|
|
|
assert(new_i.second);
|
|
|
|
i = new_i.first;
|
|
|
|
}
|
2009-10-07 13:05:29 +02:00
|
|
|
|
2010-06-16 17:17:42 +02:00
|
|
|
return typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE>((*i)._handle,(*i).n_attr);
|
2009-10-07 13:05:29 +02:00
|
|
|
}
|
2010-06-16 17:17:42 +02:00
|
|
|
|
|
|
|
return typename MeshType:: template PerMeshAttributeHandle<ATTR_TYPE>(NULL,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static void GetAllPerMeshAttribute(const MeshType & m, std::vector<std::string> &all){
|
|
|
|
typename std::set<PointerToAttribute > :: iterator i;
|
|
|
|
for(i = m.mesh_attr.begin(); i != m.mesh_attr.end(); ++i )
|
2010-09-04 00:17:14 +02:00
|
|
|
if((*i)._sizeof == sizeof(ATTR_TYPE))
|
2010-06-16 17:17:42 +02:00
|
|
|
all.push_back((*i)._name);
|
2008-06-23 16:18:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
void
|
|
|
|
DeletePerMeshAttribute( MeshType & m,typename MeshType::template PerMeshAttributeHandle<ATTR_TYPE> & h){
|
2010-03-15 16:17:20 +01:00
|
|
|
typename std::set<PointerToAttribute > ::iterator i;
|
2008-06-23 16:18:13 +02:00
|
|
|
for( i = m.mesh_attr.begin(); i != m.mesh_attr.end(); ++i)
|
|
|
|
if( (*i)._handle == h._handle ){
|
|
|
|
delete (( Attribute<ATTR_TYPE> *)(*i)._handle);
|
|
|
|
m.mesh_attr.erase(i);
|
|
|
|
return;}
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
2011-12-15 08:23:51 +01:00
|
|
|
void DeletePerMeshAttribute( MeshType & m, std::string name){
|
2009-07-29 14:46:46 +02:00
|
|
|
AttrIterator i;
|
2010-03-15 16:17:20 +01:00
|
|
|
PointerToAttribute h1; h1._name = name;
|
2008-06-23 16:18:13 +02:00
|
|
|
i = m.mesh_attr.find(h1);
|
|
|
|
assert(i!=m.mesh_attr.end());
|
2011-06-01 15:39:31 +02:00
|
|
|
delete ((SimpleTempDataBase *)(*i)._handle);
|
2008-06-23 16:18:13 +02:00
|
|
|
m.mesh_attr.erase(i);
|
|
|
|
}
|
2009-07-29 14:46:46 +02:00
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
2011-12-15 08:23:51 +01:00
|
|
|
static
|
|
|
|
void FixPaddedPerVertexAttribute (MeshType & m, PointerToAttribute & pa){
|
2009-07-29 14:46:46 +02:00
|
|
|
|
|
|
|
// create the container of the right type
|
|
|
|
SimpleTempData<VertContainer,ATTR_TYPE>* _handle = new SimpleTempData<VertContainer,ATTR_TYPE>(m.vert);
|
|
|
|
|
|
|
|
// copy the padded container in the new one
|
|
|
|
_handle->Resize(m.vert.size());
|
2009-10-07 13:05:29 +02:00
|
|
|
for(unsigned int i = 0; i < m.vert.size(); ++i){
|
2009-07-29 14:46:46 +02:00
|
|
|
ATTR_TYPE * dest = &(*_handle)[i];
|
2011-06-01 15:39:31 +02:00
|
|
|
char * ptr = (char*)( ((SimpleTempDataBase *)pa._handle)->DataBegin());
|
2011-12-15 08:23:51 +01:00
|
|
|
memcpy((void*)dest ,
|
2009-10-07 13:05:29 +02:00
|
|
|
(void*) &(ptr[i * pa._sizeof ]) ,sizeof(ATTR_TYPE));
|
2009-07-29 14:46:46 +02:00
|
|
|
}
|
|
|
|
|
2011-12-15 08:23:51 +01:00
|
|
|
// remove the padded container
|
2011-06-01 15:39:31 +02:00
|
|
|
delete ((SimpleTempDataBase*) pa._handle);
|
2009-07-29 14:46:46 +02:00
|
|
|
|
2009-10-07 13:05:29 +02:00
|
|
|
// update the pointer to data
|
|
|
|
pa._sizeof = sizeof(ATTR_TYPE);
|
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._handle = _handle;
|
|
|
|
|
2011-12-15 08:23:51 +01:00
|
|
|
// zero the padding
|
2009-10-07 13:05:29 +02:00
|
|
|
pa._padding = 0;
|
|
|
|
}
|
2011-12-15 08:23:51 +01:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
|
|
|
void FixPaddedPerEdgeAttribute (MeshType & m, PointerToAttribute & pa){
|
|
|
|
|
|
|
|
// create the container of the right type
|
|
|
|
SimpleTempData<EdgeContainer,ATTR_TYPE>* _handle = new SimpleTempData<EdgeContainer,ATTR_TYPE>(m.edge);
|
|
|
|
|
|
|
|
// copy the padded container in the new one
|
|
|
|
_handle->Resize(m.edge.size());
|
|
|
|
for(unsigned int i = 0; i < m.edge.size(); ++i){
|
|
|
|
ATTR_TYPE * dest = &(*_handle)[i];
|
|
|
|
char * ptr = (char*)( ((SimpleTempDataBase *)pa._handle)->DataBegin());
|
|
|
|
memcpy((void*)dest ,
|
|
|
|
(void*) &(ptr[i * pa._sizeof ]) ,sizeof(ATTR_TYPE));
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove the padded container
|
|
|
|
delete ((SimpleTempDataBase*) pa._handle);
|
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._sizeof = sizeof(ATTR_TYPE);
|
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._handle = _handle;
|
|
|
|
|
|
|
|
// zero the padding
|
|
|
|
pa._padding = 0;
|
|
|
|
}
|
|
|
|
|
2009-10-07 13:05:29 +02:00
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
2010-03-15 16:17:20 +01:00
|
|
|
void FixPaddedPerFaceAttribute ( MeshType & m,PointerToAttribute & pa){
|
2009-10-07 13:05:29 +02:00
|
|
|
|
|
|
|
// create the container of the right type
|
|
|
|
SimpleTempData<FaceContainer,ATTR_TYPE>* _handle = new SimpleTempData<FaceContainer,ATTR_TYPE>(m.face);
|
|
|
|
|
|
|
|
// copy the padded container in the new one
|
|
|
|
_handle->Resize(m.face.size());
|
|
|
|
for(unsigned int i = 0; i < m.face.size(); ++i){
|
|
|
|
ATTR_TYPE * dest = &(*_handle)[i];
|
2011-06-01 15:39:31 +02:00
|
|
|
char * ptr = (char*)( ((SimpleTempDataBase *)pa._handle)->DataBegin());
|
2009-10-07 13:05:29 +02:00
|
|
|
memcpy((void*)dest ,
|
|
|
|
(void*) &(ptr[i * pa._sizeof ]) ,sizeof(ATTR_TYPE));
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove the padded container
|
2011-06-01 15:39:31 +02:00
|
|
|
delete ((SimpleTempDataBase*) pa._handle);
|
2009-10-07 13:05:29 +02:00
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._sizeof = sizeof(ATTR_TYPE);
|
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._handle = _handle;
|
|
|
|
|
|
|
|
// zero the padding
|
|
|
|
pa._padding = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <class ATTR_TYPE>
|
|
|
|
static
|
2010-09-13 11:33:30 +02:00
|
|
|
void FixPaddedPerMeshAttribute ( MeshType & /* m */,PointerToAttribute & pa){
|
2009-10-07 13:05:29 +02:00
|
|
|
|
|
|
|
// create the container of the right type
|
|
|
|
Attribute<ATTR_TYPE> * _handle = new Attribute<ATTR_TYPE>();
|
|
|
|
|
|
|
|
// copy the padded container in the new one
|
2010-03-16 15:25:30 +01:00
|
|
|
char * ptr = (char*)( ((Attribute<ATTR_TYPE> *)pa._handle)->DataBegin());
|
2009-10-07 13:05:29 +02:00
|
|
|
memcpy((void*)_handle->attribute ,(void*) &(ptr[0]) ,sizeof(ATTR_TYPE));
|
|
|
|
|
|
|
|
// remove the padded container
|
|
|
|
delete ( (Attribute<ATTR_TYPE> *) pa._handle);
|
|
|
|
|
|
|
|
// update the pointer to data
|
|
|
|
pa._sizeof = sizeof(ATTR_TYPE);
|
|
|
|
|
2009-07-29 14:46:46 +02:00
|
|
|
// update the pointer to data
|
|
|
|
pa._handle = _handle;
|
|
|
|
|
|
|
|
// zero the padding
|
|
|
|
pa._padding = 0;
|
|
|
|
}
|
2010-03-15 16:17:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2007-12-11 12:36:03 +01:00
|
|
|
}; // end class
|
|
|
|
|
|
|
|
|
2006-02-28 13:13:49 +01:00
|
|
|
/*@}*/
|
|
|
|
} // End Namespace TriMesh
|
2004-03-03 16:35:53 +01:00
|
|
|
} // End Namespace vcg
|
2004-04-21 16:06:10 +02:00
|
|
|
|
2004-05-10 15:24:21 +02:00
|
|
|
#endif
|