MeshLib C Docs
Loading...
Searching...
No Matches
MRPointCloudPart.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMisc/exports.h>
4
5#include <stddef.h>
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11typedef struct MR_PointCloud MR_PointCloud; // Defined in `#include <MRCMesh/MRPointCloud.h>`.
12typedef struct MR_VertBitSet MR_VertBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
13
14
18
23
24// nullptr here means all valid points of point cloud
29
30// nullptr here means all valid points of point cloud
34
35// nullptr here means all valid points of point cloud
40
46
49
52
55
58
59#ifdef __cplusplus
60} // extern "C"
61#endif
struct MR_VertBitSet MR_VertBitSet
Definition MRAABBTree.h:15
struct MR_PointCloudPart MR_PointCloudPart
Definition MRBestFit.h:24
struct MR_PointCloud MR_PointCloud
Definition MRCtm.h:15
MRC_API MR_PointCloudPart * MR_PointCloudPart_Construct(const MR_PointCloud *c, const MR_VertBitSet *bs)
MRC_API void MR_PointCloudPart_Destroy(const MR_PointCloudPart *_this)
Destroys a heap-allocated instance of MR_PointCloudPart. Does nothing if the pointer is null.
MRC_API const MR_PointCloudPart * MR_PointCloudPart_OffsetPtr(const MR_PointCloudPart *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
MRC_API void MR_PointCloudPart_Set_region(MR_PointCloudPart *_this, const MR_VertBitSet *value)
MRC_API void MR_PointCloudPart_DestroyArray(const MR_PointCloudPart *_this)
Destroys a heap-allocated array of MR_PointCloudPart. Does nothing if the pointer is null.
MRC_API const MR_VertBitSet ** MR_PointCloudPart_GetMutable_region(MR_PointCloudPart *_this)
MRC_API const MR_PointCloud * MR_PointCloudPart_Get_cloud(const MR_PointCloudPart *_this)
MRC_API const MR_VertBitSet *const * MR_PointCloudPart_Get_region(const MR_PointCloudPart *_this)
MRC_API MR_PointCloudPart * MR_PointCloudPart_OffsetMutablePtr(MR_PointCloudPart *ptr, ptrdiff_t i)
Offsets a pointer to an array element by i positions (not bytes). Use only if you're certain that the...
#define MRC_API
Definition exports.h:11