circulators.cc
来自「penMesh is a generic and efficient data 」· CC 代码 · 共 12 行
CC
12 行
MyMesh mesh;// (linearly) iterate over all verticesfor (MyMesh::VertexIter v_it=mesh.vertices_begin(); v_it!=mesh.vertices_end(); ++v_it){ // circulate around the current vertex for (MyMesh::VertexVertexIter vv_it=mesh.vv_iter(v_it.handle()); vv_it; ++vv_it) { // do something with e.g. mesh.point(*vv_it) }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?