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
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp/Print.xsp')
-rw-r--r--xs/xsp/Print.xsp6
1 files changed, 6 insertions, 0 deletions
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index f29cb52fc..0424d8b7b 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -103,6 +103,12 @@ _constant()
%code%{ RETVAL = THIS->print_statistics().total_weight; %};
double total_cost()
%code%{ RETVAL = THIS->print_statistics().total_cost; %};
+ double total_wipe_tower_cost()
+ %code%{ RETVAL = THIS->print_statistics().total_wipe_tower_cost; %};
+ double total_wipe_tower_filament()
+ %code%{ RETVAL = THIS->print_statistics().total_wipe_tower_filament; %};
+ int wipe_tower_number_of_toolchanges()
+ %code%{ RETVAL = THIS->wipe_tower_data().number_of_toolchanges; %};
PrintObjectPtrs* objects()
%code%{ RETVAL = const_cast<PrintObjectPtrs*>(&THIS->objects()); %};
void clear_objects();