Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-10-23 16:27:31 +0300
committerbubnikv <bubnikv@gmail.com>2018-10-23 16:27:31 +0300
commitbded28f88805f37c40ccd0cc0f4a3e3a233bee50 (patch)
treed3dfc83760d9959cac188d73a5e257b34fa792e9 /xs
parentf33713e060d66320ec4cc7221fee4921d1115806 (diff)
WIP: Reconstruction of background processing.vb_dev_native_background_processing
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Print.xsp16
1 files changed, 0 insertions, 16 deletions
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index 0424d8b7b..39708ca7a 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -185,22 +185,6 @@ _constant()
}
%};
- void export_gcode_with_preview_data(char *path_template, GCodePreviewData *preview_data) %code%{
- try {
- THIS->export_gcode(path_template, preview_data);
- } catch (std::exception& e) {
- croak(e.what());
- }
- %};
-
- void export_gcode(char *path_template) %code%{
- try {
- THIS->export_gcode(path_template, nullptr);
- } catch (std::exception& e) {
- croak(e.what());
- }
- %};
-
void export_png(char *path) %code%{
try {
THIS->export_png(path);