MeshLib C Docs
Loading...
Searching...
No Matches
MREdgePaths.h
Go to the documentation of this file.
1#pragma once
2
3#include <MRCMesh/MRId.h>
4#include <MRCMesh/MRVector3.h>
5#include <MRCMisc/common.h>
6#include <MRCMisc/exports.h>
7
8#include <stdbool.h>
9#include <stddef.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15typedef struct MR_EdgeBitSet MR_EdgeBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
16typedef struct MR_FaceBitSet MR_FaceBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
17typedef struct MR_Mesh MR_Mesh; // Defined in `#include <MRCMesh/MRMesh.h>`.
18typedef struct MR_MeshTopology MR_MeshTopology; // Defined in `#include <MRCMesh/MRMeshTopology.h>`.
19typedef struct MR_MeshTriPoint MR_MeshTriPoint; // Defined in `#include <MRCMesh/MRMeshTriPoint.h>`.
20typedef struct MR_Plane3f MR_Plane3f; // Defined in `#include <MRCMesh/MRPlane3.h>`.
21typedef struct MR_UndirectedEdgeBitSet MR_UndirectedEdgeBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
22typedef struct MR_VertBitSet MR_VertBitSet; // Defined in `#include <MRCMesh/MRBitSet.h>`.
23typedef struct MR_VertCoords MR_VertCoords; // Defined in `#include <MRCMesh/MRVector.h>`.
24typedef struct MR_std_function_bool_from_float MR_std_function_bool_from_float; // Defined in `#include <MRCMisc/std_function_bool_from_float.h>`.
25typedef struct MR_std_function_float_from_MR_EdgeId MR_std_function_float_from_MR_EdgeId; // Defined in `#include <MRCMisc/std_function_float_from_MR_EdgeId.h>`.
26typedef struct MR_std_vector_MR_EdgeId MR_std_vector_MR_EdgeId; // Defined in `#include <MRCMisc/std_vector_MR_EdgeId.h>`.
27typedef struct MR_std_vector_MR_EdgePoint MR_std_vector_MR_EdgePoint; // Defined in `#include <MRCMisc/std_vector_MR_EdgePoint.h>`.
28typedef struct MR_std_vector_MR_Vector3f MR_std_vector_MR_Vector3f; // Defined in `#include <MRCMisc/std_vector_MR_Vector3f.h>`.
29typedef struct MR_std_vector_MR_VertId MR_std_vector_MR_VertId; // Defined in `#include <MRCMisc/std_vector_MR_VertId.h>`.
30typedef struct MR_std_vector_std_vector_MR_EdgeId MR_std_vector_std_vector_MR_EdgeId; // Defined in `#include <MRCMisc/std_vector_std_vector_MR_EdgeId.h>`.
31
32
38
43MRC_API bool MR_isEdgePath(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *edges);
44
49MRC_API bool MR_isEdgeLoop(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *edges);
50
59
65
70
74MRC_API double MR_calcPathMetric(const MR_std_vector_MR_EdgeId *path, MR_PassBy metric_pass_by, MR_std_function_float_from_MR_EdgeId *metric);
75
79MRC_API double MR_calcPathLength(const MR_std_vector_MR_EdgeId *path, const MR_Mesh *mesh);
80
87
92
97
103MRC_API void MR_addLeftBand(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *loop, MR_FaceBitSet *addHere);
104
110
116
122
127MRC_API const float *MR_TerminalVertex_Get_metric(const MR_TerminalVertex *_this);
128
132MRC_API void MR_TerminalVertex_Set_metric(MR_TerminalVertex *_this, float value);
133
139
143
148
154
158
162
168
171
174
182
189MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPath_MR_VertId(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen);
190
198MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPathBiDir_4(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen);
199
212MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPathBiDir_6(const MR_Mesh *mesh, const MR_MeshTriPoint *start, const MR_MeshTriPoint *finish, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathLen);
213
221MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPathAStar_4(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen);
222
235MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPathAStar_6(const MR_Mesh *mesh, const MR_MeshTriPoint *start, const MR_MeshTriPoint *finish, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathLen);
236
243MRC_API MR_std_vector_MR_EdgeId *MR_buildShortestPath_MR_VertBitSet(const MR_Mesh *mesh, MR_VertId start, const MR_VertBitSet *finish, const float *maxPathLen);
244
252
261MRC_API MR_std_vector_MR_EdgeId *MR_buildSmallestMetricPathBiDir_5(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertId start, MR_VertId finish, const float *maxPathMetric);
262
273MRC_API MR_std_vector_MR_EdgeId *MR_buildSmallestMetricPathBiDir_9(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, const MR_TerminalVertex *starts, int numStarts, const MR_TerminalVertex *finishes, int numFinishes, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathMetric);
274
283
288MRC_API MR_std_vector_MR_VertId *MR_getVertexOrdering_MR_MeshTopology(const MR_MeshTopology *topology, MR_PassBy region_pass_by, MR_VertBitSet *region);
289
296
303
309
316MRC_API bool MR_dilateRegionByMetric_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
317
323MRC_API bool MR_dilateRegionByMetric_MR_VertBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
324
330MRC_API bool MR_dilateRegionByMetric_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
331
338MRC_API bool MR_erodeRegionByMetric_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
339
345MRC_API bool MR_erodeRegionByMetric_MR_VertBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
346
352MRC_API bool MR_erodeRegionByMetric_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
353
359MRC_API bool MR_dilateRegion_4_MR_FaceBitSet(const MR_Mesh *mesh, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
360
365MRC_API bool MR_dilateRegion_4_MR_VertBitSet(const MR_Mesh *mesh, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
366
371MRC_API bool MR_dilateRegion_4_MR_UndirectedEdgeBitSet(const MR_Mesh *mesh, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
372
378MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
379
385MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_VertBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
386
392MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
393
399MRC_API bool MR_erodeRegion_4_MR_FaceBitSet(const MR_Mesh *mesh, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
400
405MRC_API bool MR_erodeRegion_4_MR_VertBitSet(const MR_Mesh *mesh, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
406
411MRC_API bool MR_erodeRegion_4_MR_UndirectedEdgeBitSet(const MR_Mesh *mesh, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
412
418MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
419
425MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_VertBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
426
432MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback);
433
440MRC_API int MR_getPathPlaneIntersections(const MR_Mesh *mesh, const MR_std_vector_MR_EdgeId *path, const MR_Plane3f *plane, MR_std_vector_MR_EdgePoint *outIntersections);
441
448
456MRC_API int MR_getPathEdgesInPlane(const MR_Mesh *mesh, const MR_std_vector_MR_EdgeId *path, const MR_Plane3f *plane, const float *tolerance, MR_std_vector_MR_EdgeId *outInPlaneEdges);
457
458#ifdef __cplusplus
459} // extern "C"
460#endif
struct MR_std_vector_std_vector_MR_EdgeId MR_std_vector_std_vector_MR_EdgeId
Definition MR2DContoursTriangulation.h:18
struct MR_MeshTopology MR_MeshTopology
Definition MR2DContoursTriangulation.h:15
struct MR_std_function_bool_from_float MR_std_function_bool_from_float
Definition MR3mf.h:10
struct MR_UndirectedEdgeBitSet MR_UndirectedEdgeBitSet
Definition MRAABBTreeBase.h:28
struct MR_VertCoords MR_VertCoords
Definition MRAABBTreePoints.h:21
struct MR_VertBitSet MR_VertBitSet
Definition MRAABBTree.h:22
struct MR_FaceBitSet MR_FaceBitSet
Definition MRAABBTree.h:17
struct MR_MeshTriPoint MR_MeshTriPoint
Definition MRAggregateFlow.h:13
struct MR_std_vector_MR_EdgePoint MR_std_vector_MR_EdgePoint
Definition MRAlignContoursToMesh.h:22
struct MR_Plane3f MR_Plane3f
Definition MRBestFit.h:22
struct MR_std_vector_MR_Vector3f MR_std_vector_MR_Vector3f
Definition MRBestFit.h:25
struct MR_EdgeBitSet MR_EdgeBitSet
Definition MRBitSet.h:84
struct MR_std_vector_MR_EdgeId MR_std_vector_MR_EdgeId
Definition MRContoursStitch.h:11
struct MR_Mesh MR_Mesh
Definition MRCtm.h:16
struct MR_std_function_float_from_MR_EdgeId MR_std_function_float_from_MR_EdgeId
Definition MREdgeMetric.h:12
MRC_API int MR_getPathEdgesInPlane(const MR_Mesh *mesh, const MR_std_vector_MR_EdgeId *path, const MR_Plane3f *plane, const float *tolerance, MR_std_vector_MR_EdgeId *outInPlaneEdges)
MRC_API bool MR_erodeRegion_4_MR_UndirectedEdgeBitSet(const MR_Mesh *mesh, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_std_vector_MR_EdgeId * MR_extractLongestClosedLoop(const MR_Mesh *mesh, const MR_std_vector_MR_EdgeId *inEdges)
MRC_API MR_std_vector_MR_EdgeId * MR_buildSmallestMetricPathBiDir_9(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, const MR_TerminalVertex *starts, int numStarts, const MR_TerminalVertex *finishes, int numFinishes, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathMetric)
MRC_API MR_TerminalVertex * MR_TerminalVertex_ConstructFromAnother(const MR_TerminalVertex *_other)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPathBiDir_6(const MR_Mesh *mesh, const MR_MeshTriPoint *start, const MR_MeshTriPoint *finish, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathLen)
MRC_API bool MR_dilateRegionByMetric_MR_VertBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API void MR_TerminalVertex_Destroy(const MR_TerminalVertex *_this)
Destroys a heap-allocated instance of MR_TerminalVertex. Does nothing if the pointer is null.
MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API void MR_sortPathsByLength(MR_std_vector_std_vector_MR_EdgeId *paths, const MR_Mesh *mesh)
MRC_API void MR_TerminalVertex_Set_v(MR_TerminalVertex *_this, MR_VertId value)
MRC_API bool MR_isEdgePath(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *edges)
MRC_API bool MR_erodeRegion_4_MR_FaceBitSet(const MR_Mesh *mesh, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API const float * MR_TerminalVertex_Get_metric(const MR_TerminalVertex *_this)
MRC_API bool MR_erodeRegion_4_MR_VertBitSet(const MR_Mesh *mesh, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_TerminalVertex * MR_TerminalVertex_DefaultConstruct(void)
MRC_API bool MR_erodeRegionByMetric_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPathAStar_6(const MR_Mesh *mesh, const MR_MeshTriPoint *start, const MR_MeshTriPoint *finish, MR_VertId *outPathStart, MR_VertId *outPathFinish, const float *maxPathLen)
MRC_API MR_std_vector_std_vector_MR_EdgeId * MR_extractClosedLoops_2(const MR_MeshTopology *topology, MR_EdgeBitSet *edges)
MRC_API MR_std_vector_std_vector_MR_EdgeId * MR_extractClosedLoops_3(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *inEdges, MR_EdgeBitSet *outNotLoopEdges)
MRC_API bool MR_dilateRegion_4_MR_VertBitSet(const MR_Mesh *mesh, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPath_MR_VertId(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen)
MRC_API MR_std_vector_MR_VertId * MR_getVertexOrdering_MR_MeshTopology(const MR_MeshTopology *topology, MR_PassBy region_pass_by, MR_VertBitSet *region)
MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API bool MR_dilateRegionByMetric_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API void MR_TerminalVertex_Set_metric(MR_TerminalVertex *_this, float value)
MRC_API bool MR_erodeRegionByMetric_MR_VertBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_TerminalVertex * MR_TerminalVertex_AssignFromAnother(MR_TerminalVertex *_this, const MR_TerminalVertex *_other)
MRC_API MR_Vector3d MR_calcOrientedArea(const MR_std_vector_MR_EdgeId *loop, const MR_Mesh *mesh)
MRC_API bool MR_dilateRegion_4_MR_UndirectedEdgeBitSet(const MR_Mesh *mesh, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPathAStar_4(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen)
MRC_API int MR_getContourPlaneIntersections(const MR_std_vector_MR_Vector3f *path, const MR_Plane3f *plane, MR_std_vector_MR_Vector3f *outIntersections)
MRC_API MR_std_vector_std_vector_MR_EdgeId * MR_splitOnSimpleLoops(const MR_MeshTopology *topology, MR_std_vector_std_vector_MR_EdgeId *loops)
struct MR_std_vector_MR_VertId MR_std_vector_MR_VertId
Definition MREdgePaths.h:29
MRC_API MR_std_vector_MR_EdgeId * MR_buildSmallestMetricPathBiDir_5(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertId start, MR_VertId finish, const float *maxPathMetric)
MRC_API double MR_calcPathLength(const MR_std_vector_MR_EdgeId *path, const MR_Mesh *mesh)
MRC_API void MR_TerminalVertex_DestroyArray(const MR_TerminalVertex *_this)
Destroys a heap-allocated array of MR_TerminalVertex. Does nothing if the pointer is null.
struct MR_TerminalVertex MR_TerminalVertex
Definition MREdgePaths.h:37
MRC_API MR_std_vector_MR_EdgeId * MR_buildSmallestMetricPath_const_MR_MeshTopology_ref_MR_VertId(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertId start, MR_VertId finish, const float *maxPathMetric)
MRC_API bool MR_dilateRegion_4_MR_FaceBitSet(const MR_Mesh *mesh, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API const MR_TerminalVertex * MR_TerminalVertex_OffsetPtr(const MR_TerminalVertex *ptr, ptrdiff_t i)
MRC_API MR_VertId * MR_TerminalVertex_GetMutable_v(MR_TerminalVertex *_this)
MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API bool MR_dilateRegion_5_const_MR_MeshTopology_ref_MR_VertBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API double MR_calcPathMetric(const MR_std_vector_MR_EdgeId *path, MR_PassBy metric_pass_by, MR_std_function_float_from_MR_EdgeId *metric)
MRC_API MR_TerminalVertex * MR_TerminalVertex_DefaultConstructArray(size_t num_elems)
MRC_API MR_TerminalVertex * MR_TerminalVertex_ConstructFrom(MR_VertId v, float metric)
MRC_API float * MR_TerminalVertex_GetMutable_metric(MR_TerminalVertex *_this)
MRC_API void MR_sortPathsByMetric(MR_std_vector_std_vector_MR_EdgeId *paths, MR_PassBy metric_pass_by, MR_std_function_float_from_MR_EdgeId *metric)
MRC_API MR_TerminalVertex * MR_TerminalVertex_OffsetMutablePtr(MR_TerminalVertex *ptr, ptrdiff_t i)
MRC_API void MR_reverse_std_vector_MR_EdgeId(MR_std_vector_MR_EdgeId *path)
MRC_API MR_std_vector_MR_EdgeId * MR_buildSmallestMetricPath_const_MR_MeshTopology_ref_MR_VertBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_VertId start, const MR_VertBitSet *finish, const float *maxPathMetric)
MRC_API int MR_getPathPlaneIntersections(const MR_Mesh *mesh, const MR_std_vector_MR_EdgeId *path, const MR_Plane3f *plane, MR_std_vector_MR_EdgePoint *outIntersections)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPathBiDir_4(const MR_Mesh *mesh, MR_VertId start, MR_VertId finish, const float *maxPathLen)
MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API void MR_reverse_std_vector_std_vector_MR_EdgeId(MR_std_vector_std_vector_MR_EdgeId *paths)
MRC_API const MR_VertId * MR_TerminalVertex_Get_v(const MR_TerminalVertex *_this)
MRC_API MR_std_vector_MR_EdgeId * MR_buildShortestPath_MR_VertBitSet(const MR_Mesh *mesh, MR_VertId start, const MR_VertBitSet *finish, const float *maxPathLen)
MRC_API bool MR_erodeRegionByMetric_MR_UndirectedEdgeBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_UndirectedEdgeBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API bool MR_isEdgeLoop(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *edges)
MRC_API void MR_addLeftBand(const MR_MeshTopology *topology, const MR_std_vector_MR_EdgeId *loop, MR_FaceBitSet *addHere)
MRC_API bool MR_dilateRegionByMetric_MR_FaceBitSet(const MR_MeshTopology *topology, const MR_std_function_float_from_MR_EdgeId *metric, MR_FaceBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
MRC_API bool MR_erodeRegion_5_const_MR_MeshTopology_ref_MR_VertBitSet(const MR_MeshTopology *topology, const MR_VertCoords *points, MR_VertBitSet *region, float dilation, MR_PassBy callback_pass_by, MR_std_function_bool_from_float *callback)
Generated from class MR::Vector3d.
Definition MRVector3.h:55
Definition MRId.h:55