Pad "tilt" changed to "slope"

This commit is contained in:
tamasmeszaros 2019-02-25 16:04:46 +01:00
parent f23919985f
commit 2b03c25bc6
7 changed files with 16 additions and 16 deletions

View file

@ -601,8 +601,8 @@ void create_base_pool(const ExPolygons &ground_layer, TriangleMesh& out,
const double thickness = cfg.min_wall_thickness_mm;
const double wingheight = cfg.min_wall_height_mm;
const double fullheight = wingheight + thickness;
const double tilt = cfg.wall_tilt;
const double wingdist = wingheight / std::tan(tilt);
const double slope = cfg.wall_slope;
const double wingdist = wingheight / std::tan(slope);
// scaled values
const coord_t s_thickness = mm(thickness);