我认为OpenMesh将支持对人脸边缘顶点的随机访问。我只能找到迭代器和循环器:
for( auto v : mesh->vertices() )
mesh->point(v).data();我怎么能做这样的事
mesh->vertices(42);发布于 2014-01-08 07:34:20
VertexHandle vertex_handle (unsigned int _i) const此函数可用于获取顶点处理程序,如果您想从其中获取顶点,只需使用
mesh.point(_vh);其中_vh是从上述函数获得的句柄。
https://stackoverflow.com/questions/20006310
复制相似问题