123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- #ifndef SLA_TEST_UTILS_HPP
- #define SLA_TEST_UTILS_HPP
- #include <catch2/catch.hpp>
- #include <test_utils.hpp>
- // Debug
- #include <fstream>
- #include <unordered_set>
- #include "libslic3r/libslic3r.h"
- #include "libslic3r/Format/OBJ.hpp"
- #include "libslic3r/SLAPrint.hpp"
- #include "libslic3r/TriangleMesh.hpp"
- #include "libslic3r/SLA/Pad.hpp"
- #include "libslic3r/SLA/SupportTreeBuilder.hpp"
- #include "libslic3r/SLA/SupportPointGenerator.hpp"
- #include "libslic3r/SLA/AGGRaster.hpp"
- #include "libslic3r/SLA/ConcaveHull.hpp"
- #include "libslic3r/MTUtils.hpp"
- #include "libslic3r/SVG.hpp"
- using namespace Slic3r;
- enum e_validity {
- ASSUME_NO_EMPTY = 1,
- ASSUME_MANIFOLD = 2,
- ASSUME_NO_REPAIR = 4
- };
- void check_validity(const TriangleMesh &input_mesh,
- int flags = ASSUME_NO_EMPTY | ASSUME_MANIFOLD |
- ASSUME_NO_REPAIR);
- struct PadByproducts
- {
- ExPolygons model_contours;
- ExPolygons support_contours;
- TriangleMesh mesh;
- };
- void test_concave_hull(const ExPolygons &polys);
- void test_pad(const std::string & obj_filename,
- const sla::PadConfig &padcfg,
- PadByproducts & out);
- inline void test_pad(const std::string & obj_filename,
- const sla::PadConfig &padcfg = {})
- {
- PadByproducts byproducts;
- test_pad(obj_filename, padcfg, byproducts);
- }
- struct SupportByproducts
- {
- std::string obj_fname;
- std::vector<float> slicegrid;
- std::vector<ExPolygons> model_slices;
- sla::SupportTreeBuilder suptree_builder;
- TriangleMesh input_mesh;
- };
- const constexpr float CLOSING_RADIUS = 0.005f;
- void check_support_tree_integrity(const sla::SupportTreeBuilder &stree,
- const sla::SupportTreeConfig &cfg,
- double gnd);
- void test_supports(const std::string &obj_filename,
- const sla::SupportTreeConfig &supportcfg,
- const sla::HollowingConfig &hollowingcfg,
- const sla::DrainHoles &drainholes,
- SupportByproducts &out);
- inline void test_supports(const std::string &obj_filename,
- const sla::SupportTreeConfig &supportcfg,
- SupportByproducts &out)
- {
- sla::HollowingConfig hcfg;
- hcfg.enabled = false;
- test_supports(obj_filename, supportcfg, hcfg, {}, out);
- }
- inline void test_supports(const std::string &obj_filename,
- const sla::SupportTreeConfig &supportcfg = {})
- {
- SupportByproducts byproducts;
- test_supports(obj_filename, supportcfg, byproducts);
- }
- void export_failed_case(const std::vector<ExPolygons> &support_slices,
- const SupportByproducts &byproducts);
- void test_support_model_collision(
- const std::string &obj_filename,
- const sla::SupportTreeConfig &input_supportcfg,
- const sla::HollowingConfig &hollowingcfg,
- const sla::DrainHoles &drainholes);
- inline void test_support_model_collision(
- const std::string &obj_filename,
- const sla::SupportTreeConfig &input_supportcfg = {})
- {
- sla::HollowingConfig hcfg;
- hcfg.enabled = false;
- test_support_model_collision(obj_filename, input_supportcfg, hcfg, {});
- }
- // SLA Raster test utils:
- using TPixel = uint8_t;
- static constexpr const TPixel FullWhite = 255;
- static constexpr const TPixel FullBlack = 0;
- template <class A, int N> constexpr int arraysize(const A (&)[N]) { return N; }
- void check_raster_transformations(sla::RasterBase::Orientation o,
- sla::RasterBase::TMirroring mirroring);
- ExPolygon square_with_hole(double v);
- inline double pixel_area(TPixel px, const sla::PixelDim &pxdim)
- {
- return (pxdim.h_mm * pxdim.w_mm) * px * 1. / (FullWhite - FullBlack);
- }
- double raster_white_area(const sla::RasterGrayscaleAA &raster);
- long raster_pxsum(const sla::RasterGrayscaleAA &raster);
- double predict_error(const ExPolygon &p, const sla::PixelDim &pd);
- sla::SupportPoints calc_support_pts(
- const TriangleMesh & mesh,
- const sla::SupportPointGenerator::Config &cfg = {});
- #endif // SLA_TEST_UTILS_HPP
|