Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
有没有函数可以像mesh.cellPoints()一样可以直接根据面的index来获取组成面的四个点的坐标?
const labelList face = mesh.faces()[index]; forAll(face, pointi) { auto point = mesh.points()[face[pointi]]; }
@马乔 好的,谢谢。 顺便问一下,这个auto是指什么?数据类型自动根据后面的指定嘛?