| 22 | #include "numbervalue.h" |
| 23 | |
| 24 | SimplifyModule::SimplifyModule(Reporter& r) : Module(r,"simplify") |
| 25 | { |
| 26 | addDescription(tr("Performs a mesh simplification on its children.")); |
| 27 | addParameter("ratio",tr("The mesh simplification stops when the number of edges is below the ratio of the initial number of edges")); |
| 28 | } |
| 29 | |
| 30 | Node* SimplifyModule::evaluate(const Context& ctx) const |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected