WIP: Command line slicing for SLA.

Removed some layer height editing bindings from Perl.
This commit is contained in:
bubnikv 2018-12-11 13:16:09 +01:00
parent 5e077c5edf
commit e0cf7ecd22
2 changed files with 26 additions and 17 deletions

View file

@ -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)