Home
last modified time | relevance | path

Searched refs:expolygons_with_attributes (Results 1 – 3 of 3) sorted by relevance

/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/
H A DSVG.cpp322 … const std::vector<std::pair<Slic3r::ExPolygons, ExPolygonAttributes>> &expolygons_with_attributes) in export_expolygons() argument
324 if (expolygons_with_attributes.empty()) in export_expolygons()
327 BoundingBox bbox = get_extents(expolygons_with_attributes.front().first); in export_expolygons()
328 for (size_t i = 0; i < expolygons_with_attributes.size(); ++ i) in export_expolygons()
329 bbox.merge(get_extents(expolygons_with_attributes[i].first)); in export_expolygons()
332 for (const auto &exp_with_attr : expolygons_with_attributes) in export_expolygons()
334 for (const auto &exp_with_attr : expolygons_with_attributes) { in export_expolygons()
343 for (const auto &exp_with_attr : expolygons_with_attributes) in export_expolygons()
H A DSVG.hpp130 …const std::vector<std::pair<Slic3r::ExPolygons, ExPolygonAttributes>> &expolygons_with_attributes);
H A DPrintObject.cpp853 … std::vector<std::pair<Slic3r::ExPolygons, SVG::ExPolygonAttributes>> expolygons_with_attributes; in detect_surfaces_type() local
854expolygons_with_attributes.emplace_back(std::make_pair(union_ex(top), SV… in detect_surfaces_type()
855expolygons_with_attributes.emplace_back(std::make_pair(union_ex(bottom), SV… in detect_surfaces_type()
856expolygons_with_attributes.emplace_back(std::make_pair(to_expolygons(layerm->slices.surfaces), SV… in detect_surfaces_type()
857 …_region%d-layer_%f.svg", iRun ++, idx_region, layer->print_z).c_str(), expolygons_with_attributes); in detect_surfaces_type()