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

github.com/supermerill/SuperSlicer.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-12-11 15:16:09 +0300
committerbubnikv <bubnikv@gmail.com>2018-12-11 15:16:09 +0300
commite0cf7ecd22dc7afef1cdc1eee8f6d3e416de7243 (patch)
tree2f4732043c6926cb7efb9bd24e2ac2af7de2e2f4 /xs
parent5e077c5edfc5a6aa3a93c0caf1530f2ecfbc76c4 (diff)
WIP: Command line slicing for SLA.
Removed some layer height editing bindings from Perl.
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Model.xsp5
1 files changed, 0 insertions, 5 deletions
diff --git a/xs/xsp/Model.xsp b/xs/xsp/Model.xsp
index 6091d00ad..8f1d88c74 100644
--- a/xs/xsp/Model.xsp
+++ b/xs/xsp/Model.xsp
@@ -211,11 +211,6 @@ ModelMaterial::attributes()
void set_layer_height_ranges(t_layer_height_ranges ranges)
%code%{ THIS->layer_height_ranges = ranges; %};
- std::vector<double> layer_height_profile()
- %code%{ RETVAL = THIS->layer_height_profile_valid ? THIS->layer_height_profile : std::vector<double>(); %};
- void set_layer_height_profile(std::vector<double> profile)
- %code%{ THIS->layer_height_profile = profile; THIS->layer_height_profile_valid = true; %};
-
Ref<Vec3d> origin_translation()
%code%{ RETVAL = &THIS->origin_translation; %};
void set_origin_translation(Vec3d* point)