我认为OpenMesh支持对面边缘顶点的随机访问。 我能找到的只是迭代器和循环器:
for( auto v : mesh->vertices() )
mesh->point(v).data();
我该怎么做:
mesh->vertices(42);
答案 0 :(得分:3)
VertexHandle vertex_handle (unsigned int _i) const
此函数可用于获取顶点处理程序,如果要从中获取顶点,只需使用
mesh.point(_vh);
其中_vh是你从上面的函数得到的句柄。