#include "MRVoxelsFwd.h"#include "MRMesh/MRAxis.h"#include "MRMesh/MRMesh.h"#include "MRMesh/MRPolyline.h"#include "MRMesh/MRProgressCallback.h"#include "MRMesh/MRExpected.h"Go to the source code of this file.
Classes | |
| struct | MR::ToolPathParams |
| struct | MR::ConstantCuspParams |
| struct | MR::LineInterpolationParams |
| struct | MR::ArcInterpolationParams |
| struct | MR::GCommand |
| struct | MR::ToolPathResult |
Namespaces | |
| namespace | MR |
| only for bindings generation | |
Enumerations | |
| enum class | MR::BypassDirection { MR::BypassDirection::Clockwise , MR::BypassDirection::CounterClockwise } |
| enum class | MR::MoveType { MR::MoveType::None = -1 , MR::MoveType::FastLinear = 0 , MR::MoveType::Linear = 1 , MR::MoveType::ArcCW = 2 , MR::MoveType::ArcCCW = 3 } |
| enum class | MR::ArcPlane { MR::ArcPlane::None = -1 , MR::ArcPlane::XY = 17 , MR::ArcPlane::XZ = 18 , MR::ArcPlane::YZ = 19 } |
Functions | |
| MRVOXELS_API Expected< ToolPathResult > | MR::constantZToolPath (const MeshPart &mp, const ToolPathParams ¶ms) |
| MRVOXELS_API Expected< ToolPathResult > | MR::lacingToolPath (const MeshPart &mp, const ToolPathParams ¶ms, Axis cutDirection) |
| Slices are built along the axis defined by cutDirection argument (can be Axis::X or Axis::Y) | |
| MRVOXELS_API Expected< ToolPathResult > | MR::constantCuspToolPath (const MeshPart &mp, const ConstantCuspParams ¶ms) |
| MRVOXELS_API std::shared_ptr< ObjectGcode > | MR::exportToolPathToGCode (const std::vector< GCommand > &commands) |
| generates G-Code for milling tool | |
| MRVOXELS_API Expected< void > | MR::interpolateLines (std::vector< GCommand > &commands, const LineInterpolationParams ¶ms, Axis axis) |
| interpolates several points lying on the same straight line with one move | |
| MRVOXELS_API Expected< void > | MR::interpolateArcs (std::vector< GCommand > &commands, const ArcInterpolationParams ¶ms, Axis axis) |
| interpolates given path with arcs | |
| MRVOXELS_API FaceBitSet | MR::smoothSelection (Mesh &mesh, const FaceBitSet ®ion, float expandOffset, float shrinkOffset) |