2018-11-02 10:57:57 +00:00
|
|
|
#ifndef SLAROTFINDER_HPP
|
|
|
|
#define SLAROTFINDER_HPP
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <array>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
|
|
|
|
class ModelObject;
|
|
|
|
|
|
|
|
namespace sla {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function should find the best rotation for SLA upside down printing.
|
|
|
|
*
|
|
|
|
* @param modelobj The model object representing the 3d mesh.
|
|
|
|
* @param accuracy The optimization accuracy from 0.0f to 1.0f. Currently,
|
|
|
|
* the nlopt genetic optimizer is used and the number of iterations is
|
|
|
|
* accuracy * 100000. This can change in the future.
|
|
|
|
* @param statuscb A status indicator callback called with the unsigned
|
|
|
|
* argument spanning from 0 to 100. May not reach 100 if the optimization finds
|
|
|
|
* an optimum before max iterations are reached.
|
|
|
|
* @param stopcond A function that if returns true, the search process will be
|
|
|
|
* terminated and the best solution found will be returned.
|
|
|
|
*
|
|
|
|
* @return Returns the rotations around each axis (x, y, z)
|
|
|
|
*/
|
|
|
|
std::array<double, 3> find_best_rotation(
|
|
|
|
const ModelObject& modelobj,
|
2018-11-22 15:04:21 +00:00
|
|
|
float accuracy = 1.0f,
|
2018-11-02 10:57:57 +00:00
|
|
|
std::function<void(unsigned)> statuscb = [] (unsigned) {},
|
|
|
|
std::function<bool()> stopcond = [] () { return false; }
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SLAROTFINDER_HPP
|