mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Merge branch 'dev_native' of https://github.com/prusa3d/Slic3r into dev_native
This commit is contained in:
commit
0bc99f3f65
11 changed files with 149 additions and 99 deletions
|
@ -17,6 +17,7 @@ class wxGLCanvas;
|
|||
namespace Slic3r {
|
||||
|
||||
class Model;
|
||||
class Print;
|
||||
|
||||
namespace GUI {
|
||||
|
||||
|
@ -92,13 +93,17 @@ public:
|
|||
~Plater();
|
||||
|
||||
Sidebar& sidebar();
|
||||
Model& model();
|
||||
Model& model();
|
||||
Print& print();
|
||||
|
||||
void load_files(const std::vector<boost::filesystem::path> &input_files);
|
||||
|
||||
void update(bool force_autocenter = false);
|
||||
void remove(size_t obj_idx);
|
||||
void remove_selected();
|
||||
|
||||
void load_files(const std::vector<boost::filesystem::path> &input_files);
|
||||
void increase(size_t num = 1);
|
||||
void decrease(size_t num = 1);
|
||||
void set_number_of_copies(size_t num);
|
||||
|
||||
// Note: empty path means "use the default"
|
||||
boost::filesystem::path export_gcode(const boost::filesystem::path &output_path = boost::filesystem::path());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue