mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-02-07 12:21:50 +03:00
Updated to 1.9.5, and optimize calibration and device
This commit is contained in:
@@ -605,9 +605,10 @@ TreeSupport::TreeSupport(PrintObject& object, const SlicingParameters &slicing_p
|
||||
support_type = m_object_config->support_type;
|
||||
support_style = m_object_config->support_style;
|
||||
if (support_style == smsDefault) {
|
||||
// organic support doesn't work with adaptive layer height
|
||||
if (object.model_object()->layer_height_profile.empty()) {
|
||||
BOOST_LOG_TRIVIAL(warning) << "tree support default to organic support";
|
||||
//1.9.5
|
||||
// organic support doesn't work with variable layer heights (including adaptive layer height and height range modifier, see #4313)
|
||||
if (!m_object->has_variable_layer_heights) {
|
||||
BOOST_LOG_TRIVIAL(warning) << "tree support default to hybrid tree due to adaptive layer height";
|
||||
support_style = smsTreeOrganic;
|
||||
}
|
||||
else {
|
||||
@@ -1080,9 +1081,9 @@ void TreeSupport::detect_overhangs(bool check_support_necessity/* = false*/)
|
||||
}
|
||||
|
||||
if (max_bridge_length > 0 && layer->loverhangs.size() > 0 && lower_layer) {
|
||||
// do not break bridge for normal part in TreeHybrid, nor Tree Strong
|
||||
bool break_bridge = !(support_style == smsTreeHybrid && area(layer->loverhangs) > m_support_params.thresh_big_overhang)
|
||||
&& !(support_style==smsTreeStrong);
|
||||
//1.9.5
|
||||
// do not break bridge as the interface will be poor
|
||||
bool break_bridge = false;
|
||||
m_object->remove_bridges_from_contacts(lower_layer, layer, extrusion_width_scaled, &layer->loverhangs, max_bridge_length, break_bridge);
|
||||
}
|
||||
|
||||
@@ -1176,6 +1177,17 @@ void TreeSupport::create_tree_support_layers()
|
||||
raft_slice_z = raft_print_z - height / 2;
|
||||
m_object->add_tree_support_layer(layer_id++, height, raft_print_z, raft_slice_z);
|
||||
}
|
||||
//1.9.5
|
||||
// Layers between the raft contacts and bottom of the object.
|
||||
double dist_to_go = m_slicing_params.object_print_z_min - raft_print_z;
|
||||
auto nsteps = int(ceil(dist_to_go / m_slicing_params.max_suport_layer_height));
|
||||
double height = dist_to_go / nsteps;
|
||||
for (int i = 0; i < nsteps; ++i) {
|
||||
raft_print_z += height;
|
||||
raft_slice_z = raft_print_z - height / 2;
|
||||
m_object->add_tree_support_layer(layer_id++, height, raft_print_z, raft_slice_z);
|
||||
}
|
||||
m_raft_layers = layer_id;
|
||||
}
|
||||
|
||||
for (Layer *layer : m_object->layers()) {
|
||||
@@ -1275,7 +1287,8 @@ static void make_perimeter_and_inner_brim(ExtrusionEntitiesPtr &dst, const ExPol
|
||||
_make_loops(dst, support_area_new, role, wall_count, flow);
|
||||
}
|
||||
|
||||
static void make_perimeter_and_infill(ExtrusionEntitiesPtr& dst, const Print& print, const ExPolygon& support_area, size_t wall_count, const Flow& flow, ExtrusionRole role, Fill* filler_support, double support_density, bool infill_first=true)
|
||||
//1.9.5
|
||||
static void make_perimeter_and_infill(ExtrusionEntitiesPtr& dst, const ExPolygon& support_area, size_t wall_count, const Flow& flow, ExtrusionRole role, Fill* filler_support, double support_density, bool infill_first=true)
|
||||
{
|
||||
Polygons loops;
|
||||
ExPolygons support_area_new = offset_ex(support_area, -0.5f * float(flow.scaled_spacing()), jtSquare);
|
||||
@@ -1377,8 +1390,9 @@ void TreeSupport::generate_toolpaths()
|
||||
}
|
||||
|
||||
raft_areas = std::move(offset_ex(raft_areas, scale_(3.)));
|
||||
|
||||
for (size_t layer_nr = 0; layer_nr < m_slicing_params.base_raft_layers; layer_nr++) {
|
||||
//1.9.5
|
||||
size_t layer_nr = 0;
|
||||
for (; layer_nr < m_slicing_params.base_raft_layers; layer_nr++) {
|
||||
SupportLayer *ts_layer = m_object->get_support_layer(layer_nr);
|
||||
coordf_t expand_offset = (layer_nr == 0 ? m_object_config->raft_first_layer_expansion.value : 0.);
|
||||
auto raft_areas1 = offset_ex(raft_areas, scale_(expand_offset));
|
||||
@@ -1413,9 +1427,11 @@ void TreeSupport::generate_toolpaths()
|
||||
first_non_raft_base.emplace_back(*area_group.area);
|
||||
}
|
||||
}
|
||||
first_non_raft_base = offset_ex(first_non_raft_base, support_extrusion_width); //1.9.5
|
||||
ExPolygons raft_base_areas = intersection_ex(raft_areas, first_non_raft_base);
|
||||
ExPolygons raft_interface_areas = diff_ex(raft_areas, raft_base_areas);
|
||||
|
||||
// raft interfaces
|
||||
for (size_t layer_nr = m_slicing_params.base_raft_layers;
|
||||
layer_nr < m_slicing_params.base_raft_layers + m_slicing_params.interface_raft_layers;
|
||||
layer_nr++)
|
||||
@@ -1439,6 +1455,18 @@ void TreeSupport::generate_toolpaths()
|
||||
filler_interface, fill_params, erSupportMaterial, support_flow);
|
||||
}
|
||||
|
||||
//1.9.5
|
||||
// layers between raft and object
|
||||
for (; layer_nr < m_raft_layers; layer_nr++) {
|
||||
SupportLayer *ts_layer = m_object->get_support_layer(layer_nr);
|
||||
Flow support_flow(support_extrusion_width, ts_layer->height, nozzle_diameter);
|
||||
Fill* filler_raft = Fill::new_from_type(ipRectilinear);
|
||||
filler_raft->angle = PI / 2;
|
||||
filler_raft->spacing = support_flow.spacing();
|
||||
for (auto& poly : first_non_raft_base)
|
||||
make_perimeter_and_infill(ts_layer->support_fills.entities, poly, std::min(size_t(1), wall_count), support_flow, erSupportMaterial, filler_raft, interface_density, false);
|
||||
}
|
||||
|
||||
if (m_object->support_layer_count() <= m_raft_layers)
|
||||
return;
|
||||
|
||||
@@ -1464,7 +1492,8 @@ void TreeSupport::generate_toolpaths()
|
||||
|
||||
SupportLayer* ts_layer = m_object->get_support_layer(layer_id);
|
||||
Flow support_flow(support_extrusion_width, ts_layer->height, nozzle_diameter);
|
||||
m_support_material_interface_flow = support_material_interface_flow(m_object, ts_layer->height); // update flow using real support layer height
|
||||
//1.9.5
|
||||
Flow interface_flow = support_material_interface_flow(m_object, ts_layer->height); // update flow using real support layer height
|
||||
coordf_t support_spacing = object_config.support_base_pattern_spacing.value + support_flow.spacing();
|
||||
coordf_t support_density = std::min(1., support_flow.spacing() / support_spacing);
|
||||
ts_layer->support_fills.no_sort = false;
|
||||
@@ -1493,10 +1522,12 @@ void TreeSupport::generate_toolpaths()
|
||||
// roof_1st_layer
|
||||
fill_params.density = interface_density;
|
||||
// Note: spacing means the separation between two lines as if they are tightly extruded
|
||||
filler_Roof1stLayer->spacing = m_support_material_interface_flow.spacing();
|
||||
//1.9.5
|
||||
filler_Roof1stLayer->spacing = interface_flow.spacing();
|
||||
// generate a perimeter first to support interface better
|
||||
ExtrusionEntityCollection* temp_support_fills = new ExtrusionEntityCollection();
|
||||
make_perimeter_and_infill(temp_support_fills->entities, *m_object->print(), poly, 1, m_support_material_interface_flow, erSupportMaterial,
|
||||
//1.9.5
|
||||
make_perimeter_and_infill(temp_support_fills->entities, poly, 1, interface_flow, erSupportMaterial,
|
||||
filler_Roof1stLayer.get(), interface_density, false);
|
||||
temp_support_fills->no_sort = true; // make sure loops are first
|
||||
if (!temp_support_fills->entities.empty())
|
||||
@@ -1506,13 +1537,15 @@ void TreeSupport::generate_toolpaths()
|
||||
} else if (area_group.type == SupportLayer::FloorType) {
|
||||
// floor_areas
|
||||
fill_params.density = bottom_interface_density;
|
||||
filler_interface->spacing = m_support_material_interface_flow.spacing();
|
||||
//1.9.5
|
||||
filler_interface->spacing = interface_flow.spacing();
|
||||
fill_expolygons_generate_paths(ts_layer->support_fills.entities, polys,
|
||||
filler_interface.get(), fill_params, erSupportMaterialInterface, m_support_material_interface_flow);
|
||||
filler_interface.get(), fill_params, erSupportMaterialInterface, interface_flow);
|
||||
} else if (area_group.type == SupportLayer::RoofType) {
|
||||
// roof_areas
|
||||
fill_params.density = interface_density;
|
||||
filler_interface->spacing = m_support_material_interface_flow.spacing();
|
||||
//1.9.5
|
||||
filler_interface->spacing = interface_flow.spacing();
|
||||
if (m_object_config->support_interface_pattern == smipGrid) {
|
||||
filler_interface->angle = Geometry::deg2rad(object_config.support_angle.value);
|
||||
fill_params.dont_sort = true;
|
||||
@@ -1521,7 +1554,7 @@ void TreeSupport::generate_toolpaths()
|
||||
filler_interface->layer_id = area_group.interface_id;
|
||||
|
||||
fill_expolygons_generate_paths(ts_layer->support_fills.entities, polys, filler_interface.get(), fill_params, erSupportMaterialInterface,
|
||||
m_support_material_interface_flow);
|
||||
interface_flow);
|
||||
}
|
||||
else {
|
||||
// base_areas
|
||||
@@ -1546,7 +1579,8 @@ void TreeSupport::generate_toolpaths()
|
||||
// otherwise must draw 1 wall
|
||||
// Don't need extra walls if we have infill. Extra walls may overlap with the infills.
|
||||
size_t min_wall_count = offset(poly, -scale_(support_spacing * 1.5)).empty() ? 1 : 0;
|
||||
make_perimeter_and_infill(ts_layer->support_fills.entities, *m_object->print(), poly, std::max(min_wall_count, wall_count), flow,
|
||||
//1.9.5
|
||||
make_perimeter_and_infill(ts_layer->support_fills.entities, poly, std::max(min_wall_count, wall_count), flow,
|
||||
erSupportMaterial, filler_support.get(), support_density);
|
||||
}
|
||||
else {
|
||||
@@ -1962,7 +1996,8 @@ void TreeSupport::draw_circles(const std::vector<std::vector<SupportNode*>>& con
|
||||
const bool with_lightning_infill = m_support_params.base_fill_pattern == ipLightning;
|
||||
coordf_t support_extrusion_width = m_support_params.support_extrusion_width;
|
||||
const coordf_t line_width_scaled = scale_(support_extrusion_width);
|
||||
const float tree_brim_width = config.tree_support_brim_width.value;
|
||||
//1.9.5
|
||||
const float tree_brim_width = config.raft_first_layer_expansion.value;
|
||||
|
||||
if (m_object->support_layer_count() <= m_raft_layers)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user