#ifndef slic3r_quadric_edge_collapse_hpp_ #define slic3r_quadric_edge_collapse_hpp_ // paper: https://people.eecs.berkeley.edu/~jrs/meshpapers/GarlandHeckbert2.pdf // sum up: https://users.csc.calpoly.edu/~zwood/teaching/csc570/final06/jseeba/ // inspiration: https://github.com/sp4cerat/Fast-Quadric-Mesh-Simplification #include #include #include "TriangleMesh.hpp" namespace Slic3r { /// /// Simplify mesh by Quadric metric /// /// IN/OUT triangle mesh to be simplified. /// Wanted triangle count. /// Maximal Quadric for reduce. /// When nullptr then max float is used /// Output: Last used ErrorValue to collapse edge /// Could stop process of calculation. /// Give a feed back to user about progress. Values 1 - 100 void its_quadric_edge_collapse( indexed_triangle_set & its, uint32_t triangle_count = 0, float * max_error = nullptr, std::function throw_on_cancel = nullptr, std::function statusfn = nullptr); } // namespace Slic3r #endif // slic3r_quadric_edge_collapse_hpp_