MeshLib
 
Loading...
Searching...
No Matches
MRCloudPartMapping.h
Go to the documentation of this file.
1#pragma once
2
3#include "MRMesh/MRMeshFwd.h"
4
5namespace MR
6{
7
8// mapping among elements of source point cloud, from which a part is taken, and target (this) point cloud
10{
11 // from.id -> this.id, efficient when full cloud without many invalid points is added into another cloud
12 VertMap * src2tgtVerts = nullptr;
13 // this.id -> from.id, efficient when any cloud or its part is added into empty cloud
14 VertMap * tgt2srcVerts = nullptr;
15};
16
17} //namespace MR
List< VertId > VertMap
Definition MRDotNet/MRMeshFwd.h:84
Definition MRCameraOrientationPlugin.h:7
Definition MRCloudPartMapping.h:10
VertMap * tgt2srcVerts
Definition MRCloudPartMapping.h:14
VertMap * src2tgtVerts
Definition MRCloudPartMapping.h:12