summaryrefslogtreecommitdiff
path: root/assetFactory/modelFactoryMesh.cpp
blob: 3660fb779b81ccf2f2d8affc12145e3f5651e8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "modelFactoryMesh.h"

void
ModelFactoryMesh::configNamedFace(const std::string & name, OpenMesh::FaceHandle handle)
{
	property(nameFaceProperty, handle) = name;
	const auto halfEdges = fh_range(handle);
	for (const auto & he : halfEdges) {
		if (auto ofh = opposite_face_handle(he); ofh.is_valid()) {
			property(nameAdjFaceProperty, he) = property(nameFaceProperty, ofh);
		}
		if (auto oheh = opposite_halfedge_handle(he); oheh.is_valid()) {
			property(nameAdjFaceProperty, oheh) = name;
		}
	}
}