MeshLib C++ Docs
Loading...
Searching...
No Matches
MRPartMapping.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRMeshFwd.h"
4
5namespace MR
6{
9
10
13{
18 FaceMapOrHashMap * src2tgtFaces = nullptr;
19 VertMapOrHashMap * src2tgtVerts = nullptr;
20 WholeEdgeMapOrHashMap * src2tgtEdges = nullptr;
21
24 FaceMapOrHashMap * tgt2srcFaces = nullptr;
25 VertMapOrHashMap * tgt2srcVerts = nullptr;
26 WholeEdgeMapOrHashMap * tgt2srcEdges = nullptr;
27
29 MRMESH_API void clear();
30};
31
32}
MRMESH_API void clear()
clears all member maps
VertMapOrHashMap * tgt2srcVerts
Definition MRPartMapping.h:25
WholeEdgeMapOrHashMap * src2tgtEdges
Definition MRPartMapping.h:20
FaceMapOrHashMap * src2tgtFaces
Definition MRPartMapping.h:18
WholeEdgeMapOrHashMap * tgt2srcEdges
Definition MRPartMapping.h:26
VertMapOrHashMap * src2tgtVerts
Definition MRPartMapping.h:19
FaceMapOrHashMap * tgt2srcFaces
Definition MRPartMapping.h:24
only for bindings generation
Definition MRCameraOrientationPlugin.h:8
mapping among elements of source mesh, from which a part is taken, and target mesh
Definition MRPartMapping.h:13