OpenMesh 将所有标准和自定义属性从一个网格元素复制到另一个网格元素

OpenMesh copy all standard and custom properties from one mesh element to another

OpenMesh 提供了在网格元素(面、顶点、半边、边)上存储属性的可能性,如 here 所述。是否有可用的函数将所有这些属性从一个元素复制到另一个元素?

看看copy_all_properties

签名(有几种风格 - VertexHandle、HalfedgeHandle、EdgeHandle 和 FaceHandle):

void OpenMesh::BaseKernel::copy_all_properties(EdgeHandle _eh_from, EdgeHandle  _eh_to, bool _copyBuildIn = false ) 

来自 git 存储库的用法示例:unittests_property.cc