mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-04 16:52:29 +00:00
19 lines
555 B
C++
19 lines
555 B
C++
#ifndef slic3r_GUI_Utils_FixModelByCgal_hpp_
|
|
#define slic3r_GUI_Utils_FixModelByCgal_hpp_
|
|
|
|
#include <string>
|
|
#include "../GUI/Widgets/ProgressDialog.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class Model;
|
|
class ModelObject;
|
|
class Print;
|
|
|
|
// Return false if fixing was canceled. fix_result is empty on success.
|
|
extern bool fix_model_with_cgal_gui(ModelObject &model_object, int volume_idx, GUI::ProgressDialog &progress_dlg, const wxString &msg_header, std::string &fix_result, bool keep_painting);
|
|
|
|
} // namespace Slic3r
|
|
|
|
#endif /* slic3r_GUI_Utils_FixModelByCgal_hpp_ */
|