在上一个例子中,我们计算了每个顶点邻域的重心并将其存储在一个数组中。 如果我们可以将这些数据存储在网格中并让OpenMesh管理数据,那么它将更方便,更不容易出错。 如果我们可以动态地将这些属性附加到网格上会更有帮助。
OpenMesh提供动态属性,可以附加到每个网格实体(顶点,面,边,半边和网格本身)。 我们区分自定义属性和标准属性。 自定义属性是任何用户定义的属性,可通过句柄和实体句柄(例如VertexHandle)通过成员函数属性(..)访问。 而标准属性是通过特殊成员函数访问的,例如 使用point(..)和顶点句柄访问顶点位置。
在这个例子中,我们将cog-value(参见前面的例子)存储在一个额外的顶点属性中,而不是将它保存在一个单独的数组中。 为此,我们首先定义一个具有所需类型(MyMesh :: Point)的所谓属性句柄,并在网格处注册句柄:
网格分配足够的内存来保存MyMesh :: Point类型的元素,因为顶点的数量存在,当然网格将顶点上的所有插入和删除操作与顶点属性同步。
一旦注册了想要的属性,我们就可以使用该属性来计算每个顶点v_it的邻域的重心
最后为每个顶点v_it设置新位置
#include <iostream>
#include <vector>
// --------------------
#include <OpenMesh/Core/IO/MeshIO.hh>
#include <OpenMesh/Core/Mesh/TriMesh_ArrayKernelT.hh>
typedef OpenMesh::TriMesh_ArrayKernelT<> MyMesh;
int main(int argc, char **argv)
{
MyMesh mesh;
// check command line options
if (argc != 4)
{
std::cerr << "Usage: " << argv[0] << " #iterations infile outfile\n";
return 1;
}
// read mesh from stdin
if ( ! OpenMesh::IO::read_mesh(mesh, argv[2]) )
{
std::cerr << "Error: Cannot read mesh from " << argv[2] << std::endl;
return 1;
}
// this vertex property stores the computed centers of gravity
OpenMesh::VPropHandleT<MyMesh::Point> cogs;
mesh.add_property(cogs);
// smoothing mesh argv[1] times
MyMesh::VertexIter v_it, v_end(mesh.vertices_end());
MyMesh::VertexVertexIter vv_it;
MyMesh::Point cog;
MyMesh::Scalar valence;
unsigned int i, N(atoi(argv[1]));
for (i=0; i < N; ++i)
{
for (v_it=mesh.vertices_begin(); v_it!=v_end; ++v_it)
{
mesh.property(cogs,*v_it).vectorize(0.0f);
valence = 0.0;
for (vv_it=mesh.vv_iter( *v_it ); vv_it; ++vv_it)
{
mesh.property(cogs,*v_it) += mesh.point( *vv_it );
++valence;
}
mesh.property(cogs,*v_it) /= valence;
}
for (v_it=mesh.vertices_begin(); v_it!=v_end; ++v_it)
if ( !mesh.is_boundary( *v_it ) )
mesh.set_point( *v_it, mesh.property(cogs,*v_it) );
}
// write mesh to stdout
if ( ! OpenMesh::IO::write_mesh(mesh, argv[3]) )
{
std::cerr << "Error: cannot write mesh to " << argv[3] << std::endl;
return 1;
}
return 0;
}