Fix polyhedron demo with TBB

This commit is contained in:
Ivan Paden 2023-07-11 10:08:21 +02:00
parent 1c597a07cf
commit cc0c46c7ef
1 changed files with 5 additions and 1 deletions

View File

@ -890,7 +890,11 @@ public Q_SLOTS:
tbb::parallel_for(
tbb::blocked_range<std::size_t>(0, selection.size()),
Remesh_polyhedron_item_for_parallel_for<Remesh_polyhedron_item>(
selection, edges_to_protect, edges_only, target_length, nb_iter, protect, smooth_features));
selection, edges_to_protect, edges_only
, edge_sizing_type, target_length, error_tol
, min_length , max_length, nb_iter
, protect, smooth_features)
);
total_time = time.elapsed();