MeshLib C++ Docs
Loading...
Searching...
No Matches
MROffset.h
Go to the documentation of this file.
1#pragma once
2#include "MRVoxelsFwd.h"
3#include "MRMesh/MRMeshPart.h"
7#include "MRMesh/MRExpected.h"
8#include "MRMesh/MREnums.h"
9#include <optional>
10#include <string>
11
12namespace MR
13{
16
17
27
29[[nodiscard]] MRVOXELS_API float suggestVoxelSize( const MeshPart & mp, float approxNumVoxels );
30
62
64{
66 UndirectedEdgeBitSet* outSharpEdges = nullptr;
70 float minNewVertDev = 1.0f / 25;
78};
79
84[[nodiscard]] MRVOXELS_API Expected<Mesh> offsetMesh( const MeshPart& mp, float offset, const OffsetParameters& params = {} );
85
89[[nodiscard]] MRVOXELS_API Expected<Mesh> doubleOffsetMesh( const MeshPart& mp, float offsetA, float offsetB, const OffsetParameters& params = {} );
90
93[[nodiscard]] MRVOXELS_API Expected<Mesh> mcOffsetMesh( const MeshPart& mp, float offset,
94 const OffsetParameters& params = {}, Vector<VoxelId, FaceId>* outMap = nullptr );
95
99[[nodiscard]] MRVOXELS_API Expected<Mesh> mcShellMeshRegion( const Mesh& mesh, const FaceBitSet& region, float offset,
100 const BaseShellParameters& params, Vector<VoxelId, FaceId> * outMap = nullptr );
101
104[[nodiscard]] MRVOXELS_API Expected<Mesh> sharpOffsetMesh( const MeshPart& mp, float offset, const SharpOffsetParameters& params = {} );
105
112
115[[nodiscard]] MRVOXELS_API Expected<Mesh> generalOffsetMesh( const MeshPart& mp, float offset, const GeneralOffsetParameters& params );
116
121[[nodiscard]] MRVOXELS_API Expected<Mesh> thickenMesh( const Mesh& mesh, float offset, const GeneralOffsetParameters & params = {},
122 const PartMapping & map = {} );
123
128[[nodiscard]] MRVOXELS_API Expected<Mesh> offsetOneDirection( const MeshPart& mp, float offset, const GeneralOffsetParameters& params = {} );
129
134[[nodiscard]] MRVOXELS_API Expected<Mesh> offsetPolyline( const Polyline3& polyline, float offset, const OffsetParameters& params = {} );
135
136}
#define MRVOXELS_API
see explanation in MRMesh/MRMeshFwd.h
Definition MRVoxelsFwd.h:14
std::vector<T>-like container that requires specific indexing type,
Definition MRVector.h:23
std::function< bool(float)> ProgressCallback
Definition MRMeshFwd.h:751
SignDetectionMode
how to determine the sign of distances from a mesh
Definition MRSignDetectionMode.h:13
float voxelSize
Definition MROffset.h:22
bool closeHolesInHoleWindingNumber
whether to construct closed mesh in signMode = SignDetectionModeShort::HoleWindingNumber
Definition MROffset.h:37
struct MRMESH_CLASS PartMapping
Definition MRMeshFwd.h:637
ProgressCallback callBack
Progress callback.
Definition MROffset.h:25
Mode mode
Definition MROffset.h:110
float maxNewRank2VertDev
maximal surface deviation to introduce new rank 2 vertex (on intersection of 2 planes),...
Definition MROffset.h:72
float maxNewRank3VertDev
maximal surface deviation to introduce new rank 3 vertex (on intersection of 3 planes),...
Definition MROffset.h:74
Expected< Mesh > offsetPolyline(const Polyline3 &polyline, float offset, const OffsetParameters &params={})
Expected< Mesh > generalOffsetMesh(const MeshPart &mp, float offset, const GeneralOffsetParameters &params)
std::shared_ptr< IFastWindingNumber > fwn
Definition MROffset.h:51
UndirectedEdgeBitSet * outSharpEdges
if non-null then created sharp edges will be saved here
Definition MROffset.h:66
Expected< Mesh > doubleOffsetMesh(const MeshPart &mp, float offsetA, float offsetB, const OffsetParameters &params={})
tl::expected< T, E > Expected
Definition MRExpected.h:31
Vector< VoxelId, FaceId > * outVoxelPerFace
if non-null then for each output mesh face maps its voxel id
Definition MROffset.h:68
float suggestVoxelSize(const MeshPart &mp, float approxNumVoxels)
computes size of a cubical voxel to get approximately given number of voxels during rasterization
Expected< Mesh > offsetOneDirection(const MeshPart &mp, float offset, const GeneralOffsetParameters &params={})
Expected< Mesh > offsetMesh(const MeshPart &mp, float offset, const OffsetParameters &params={})
SignDetectionMode signDetectionMode
determines the method to compute distance sign
Definition MROffset.h:34
float windingNumberThreshold
Definition MROffset.h:42
OffsetMode
Definition MREnums.h:77
Expected< Mesh > thickenMesh(const Mesh &mesh, float offset, const GeneralOffsetParameters &params={}, const PartMapping &map={})
mapping between original mesh and thicken result
MR::OffsetMode Mode
Definition MROffset.h:109
bool memoryEfficient
Definition MROffset.h:60
Expected< Mesh > sharpOffsetMesh(const MeshPart &mp, float offset, const SharpOffsetParameters &params={})
float windingNumberBeta
Definition MROffset.h:46
Expected< Mesh > mcShellMeshRegion(const Mesh &mesh, const FaceBitSet &region, float offset, const BaseShellParameters &params, Vector< VoxelId, FaceId > *outMap=nullptr)
Expected< Mesh > mcOffsetMesh(const MeshPart &mp, float offset, const OffsetParameters &params={}, Vector< VoxelId, FaceId > *outMap=nullptr)
float minNewVertDev
minimal surface deviation to introduce new vertex in a voxel, measured in voxelSize
Definition MROffset.h:70
float maxOldVertPosCorrection
Definition MROffset.h:77
@ OpenVDB
sign detection from OpenVDB library, which is good and fast if input geometry is closed
Definition MRSignDetectionMode.h:18
only for bindings generation
Definition MRCameraOrientationPlugin.h:8
Definition MROffset.h:19
allows the user to select in the parameters which offset algorithm to call
Definition MROffset.h:108
Definition MRMesh.h:23
Definition MROffset.h:32
Definition MROffset.h:64