#include "libslic3r.h" #if ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE #include "Model.hpp" #else #include "TriangleMesh.hpp" #endif // ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE #include "SlicingAdaptive.hpp" namespace Slic3r { #if !ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE void SlicingAdaptive::clear() { m_meshes.clear(); m_faces.clear(); m_face_normal_z.clear(); } #endif // !ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE std::pair face_z_span(const stl_facet *f) { return std::pair( std::min(std::min(f->vertex[0](2), f->vertex[1](2)), f->vertex[2](2)), std::max(std::max(f->vertex[0](2), f->vertex[1](2)), f->vertex[2](2))); } void SlicingAdaptive::prepare() { #if ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE if (m_object == nullptr) return; m_faces.clear(); m_face_normal_z.clear(); m_mesh = m_object->raw_mesh(); const ModelInstance* first_instance = m_object->instances.front(); m_mesh.transform(first_instance->get_matrix(), first_instance->is_left_handed()); for (stl_facet& facet : m_mesh.stl.facet_start) { facet.normal.normalize(); } // 1) Collect faces from mesh. m_faces.reserve(m_mesh.stl.stats.number_of_facets); for (const stl_facet& face : m_mesh.stl.facet_start) m_faces.emplace_back(&face); #else // 1) Collect faces of all meshes. int nfaces_total = 0; for (std::vector::const_iterator it_mesh = m_meshes.begin(); it_mesh != m_meshes.end(); ++ it_mesh) nfaces_total += (*it_mesh)->stl.stats.number_of_facets; m_faces.reserve(nfaces_total); for (std::vector::const_iterator it_mesh = m_meshes.begin(); it_mesh != m_meshes.end(); ++ it_mesh) for (const stl_facet& face : (*it_mesh)->stl.facet_start) m_faces.emplace_back(&face); #endif // ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE // 2) Sort faces lexicographically by their Z span. std::sort(m_faces.begin(), m_faces.end(), [](const stl_facet *f1, const stl_facet *f2) { std::pair span1 = face_z_span(f1); std::pair span2 = face_z_span(f2); return span1 < span2; }); // 3) Generate Z components of the facet normals. m_face_normal_z.assign(m_faces.size(), 0.f); for (size_t iface = 0; iface < m_faces.size(); ++ iface) m_face_normal_z[iface] = m_faces[iface]->normal(2); } float SlicingAdaptive::cusp_height(float z, float cusp_value, int ¤t_facet) { float height = (float)m_slicing_params.max_layer_height; bool first_hit = false; // find all facets intersecting the slice-layer int ordered_id = current_facet; for (; ordered_id < int(m_faces.size()); ++ ordered_id) { std::pair zspan = face_z_span(m_faces[ordered_id]); // facet's minimum is higher than slice_z -> end loop if (zspan.first >= z) break; // facet's maximum is higher than slice_z -> store the first event for next cusp_height call to begin at this point if (zspan.second > z) { // first event? if (! first_hit) { first_hit = true; current_facet = ordered_id; } // skip touching facets which could otherwise cause small cusp values if (zspan.second <= z + EPSILON) continue; // compute cusp-height for this facet and store minimum of all heights float normal_z = m_face_normal_z[ordered_id]; height = std::min(height, (normal_z == 0.f) ? 9999.f : std::abs(cusp_value / normal_z)); } } // lower height limit due to printer capabilities height = std::max(height, float(m_slicing_params.min_layer_height)); // check for sloped facets inside the determined layer and correct height if necessary if (height > m_slicing_params.min_layer_height) { for (; ordered_id < int(m_faces.size()); ++ ordered_id) { std::pair zspan = face_z_span(m_faces[ordered_id]); // facet's minimum is higher than slice_z + height -> end loop if (zspan.first >= z + height) break; // skip touching facets which could otherwise cause small cusp values if (zspan.second <= z + EPSILON) continue; // Compute cusp-height for this facet and check against height. float normal_z = m_face_normal_z[ordered_id]; float cusp = (normal_z == 0) ? 9999 : abs(cusp_value / normal_z); float z_diff = zspan.first - z; // handle horizontal facets if (m_face_normal_z[ordered_id] > 0.999) { // Slic3r::debugf "cusp computation, height is reduced from %f", $height; height = z_diff; // Slic3r::debugf "to %f due to near horizontal facet\n", $height; } else if (cusp > z_diff) { if (cusp < height) { // Slic3r::debugf "cusp computation, height is reduced from %f", $height; height = cusp; // Slic3r::debugf "to %f due to new cusp height\n", $height; } } else { // Slic3r::debugf "cusp computation, height is reduced from %f", $height; height = z_diff; // Slic3r::debugf "to z-diff: %f\n", $height; } } // lower height limit due to printer capabilities again height = std::max(height, float(m_slicing_params.min_layer_height)); } // Slic3r::debugf "cusp computation, layer-bottom at z:%f, cusp_value:%f, resulting layer height:%f\n", unscale $z, $cusp_value, $height; return height; } #if !ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE // Returns the distance to the next horizontal facet in Z-dir // to consider horizontal object features in slice thickness float SlicingAdaptive::horizontal_facet_distance(float z) { for (size_t i = 0; i < m_faces.size(); ++ i) { std::pair zspan = face_z_span(m_faces[i]); // facet's minimum is higher than max forward distance -> end loop if (zspan.first > z + m_slicing_params.max_layer_height) break; // min_z == max_z -> horizontal facet if ((zspan.first > z) && (zspan.first == zspan.second)) return zspan.first - z; } // objects maximum? return (z + (float)m_slicing_params.max_layer_height > (float)m_slicing_params.object_print_z_height()) ? std::max((float)m_slicing_params.object_print_z_height() - z, 0.f) : (float)m_slicing_params.max_layer_height; } #endif // !ENABLE_ADAPTIVE_LAYER_HEIGHT_PROFILE }; // namespace Slic3r