Make sla support pierce tests repeatable

This commit is contained in:
tamasmeszaros 2020-01-13 14:00:33 +01:00
parent 6205524d75
commit 256249fdaf

View file

@ -115,8 +115,10 @@ void test_supports(const std::string &obj_filename,
// Create the support point generator
sla::SupportPointGenerator::Config autogencfg;
autogencfg.head_diameter = float(2 * supportcfg.head_front_radius_mm);
sla::SupportPointGenerator point_gen{emesh, out.model_slices, out.slicegrid,
autogencfg, [] {}, [](int) {}};
sla::SupportPointGenerator point_gen{emesh, autogencfg, [] {}, [](int) {}};
long seed = 0; // Make the test repeatable
point_gen.execute(out.model_slices, out.slicegrid, seed);
// Get the calculated support points.
std::vector<sla::SupportPoint> support_points = point_gen.output();