Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は、OpenMesh が面のエッジの頂点へのランダム アクセスをサポートすると考えていました。私が見つけることができるのは、イテレータとサーキュレータだけです:
for( auto v : mesh->vertices() ) mesh->point(v).data();
どうすればこのようなことができますか:
mesh->vertices(42);
VertexHandle vertex_handle (unsigned int _i) const
この関数は、頂点ハンドラを取得するために使用できます。そこから頂点を取得する場合は、単に使用します
mesh.point(_vh);
ここで、_vh は上記の関数から取得したハンドルです。