MeshLib C Docs
Loading...
Searching...
No Matches
MRMeshToPointCloud.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMisc/exports.h>
4
5#include <stdbool.h>
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11typedef struct MR_Mesh MR_Mesh; // Defined in `#include <MRCMesh/MRMesh.h>`.
12typedef struct MR_PointCloud MR_PointCloud; // Defined in `#include <MRCMesh/MRPointCloud.h>`.
13typedef struct MR_VertBitSet MR_VertBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
14
15
22MRC_API MR_PointCloud *MR_meshToPointCloud(const MR_Mesh *mesh, const bool *saveNormals, const MR_VertBitSet *verts);
23
24#ifdef __cplusplus
25} // extern "C"
26#endif
struct MR_VertBitSet MR_VertBitSet
Definition MRAABBTree.h:15
struct MR_Mesh MR_Mesh
Definition MRCtm.h:13
struct MR_PointCloud MR_PointCloud
Definition MRCtm.h:15
MRC_API MR_PointCloud * MR_meshToPointCloud(const MR_Mesh *mesh, const bool *saveNormals, const MR_VertBitSet *verts)
#define MRC_API
Definition exports.h:11