本文整理汇总了C++中MNMesh::CloneFaces方法的典型用法代码示例。如果您正苦于以下问题:C++ MNMesh::CloneFaces方法的具体用法?C++ MNMesh::CloneFaces怎么用?C++ MNMesh::CloneFaces使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MNMesh
的用法示例。
在下文中一共展示了MNMesh::CloneFaces方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: MirrorPolyObject
void SymmetryMod::MirrorPolyObject (MNMesh & mesh, int axis, Matrix3 & tm, Matrix3 & itm) {
// Create scaling matrix for mirroring on selected axis:
Point3 scale(1,1,1);
scale[axis] = -1.0f;
itm.Scale(scale,TRUE);
// Make the mirror copy of the entire mesh:
int oldnumv = mesh.numv;
for (int i=0; i<mesh.numf; i++) mesh.f[i].SetFlag (MN_USER);
mesh.CloneFaces (MN_USER, true);
// Transform the vertices to their mirror images:
for (int i=oldnumv; i<mesh.numv; i++) mesh.v[i].p = (itm*mesh.v[i].p)*tm;
// Flip over faces, edges:
mesh.FlipElementNormals (MN_USER); // flag should now be set only on clones.
DbgAssert (mesh.CheckAllData ());
}