Fixes for interconnection issues.

This commit is contained in:
tamasmeszaros 2019-03-07 17:17:47 +01:00
parent 0d59433178
commit 3bce99bd23
2 changed files with 113 additions and 54 deletions

View file

@ -78,13 +78,13 @@ struct SupportConfig {
// and the model object's bounding box bottom.
double object_elevation_mm = 10;
// The max Z angle for a normal at which it will get completely ignored.
static const double normal_cutoff_angle;
// /////////////////////////////////////////////////////////////////////////
// Compile time configuration values (candidates for runtime)
// /////////////////////////////////////////////////////////////////////////
// The max Z angle for a normal at which it will get completely ignored.
static const double normal_cutoff_angle;
// The shortest distance of any support structure from the model surface
static const double safety_distance_mm;
@ -93,6 +93,7 @@ struct SupportConfig {
static const double optimizer_rel_score_diff;
static const unsigned optimizer_max_iterations;
static const unsigned pillar_cascade_neighbors;
static const unsigned max_bridges_on_pillar;
};
struct PoolConfig;