Disabling pad edge radius and adding the "wall tilt" parameter.

This commit is contained in:
tamasmeszaros 2019-02-25 12:06:38 +01:00
parent 3aee6ddc4c
commit 01c9b13ade
7 changed files with 45 additions and 15 deletions

View file

@ -1028,6 +1028,9 @@ public:
// The smoothing radius of the pad edges
ConfigOptionFloat pad_edge_radius /*= 1*/;
// The tilt of the pad wall...
ConfigOptionFloat pad_wall_tilt;
protected:
void initialize(StaticCacheBase &cache, const char *base_ptr)
{
@ -1053,6 +1056,7 @@ protected:
OPT_PTR(pad_wall_height);
OPT_PTR(pad_max_merge_distance);
OPT_PTR(pad_edge_radius);
OPT_PTR(pad_wall_tilt);
}
};