18 lines
402 B
C++
18 lines
402 B
C++
|
#ifndef slic3r_ShortestPath_hpp_
|
||
|
#define slic3r_ShortestPath_hpp_
|
||
|
|
||
|
#include "libslic3r.h"
|
||
|
#include "ExtrusionEntity.hpp"
|
||
|
#include "Point.hpp"
|
||
|
|
||
|
#include <utility>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace Slic3r {
|
||
|
|
||
|
std::vector<std::pair<size_t, bool>> chain_extrusion_entities(std::vector<ExtrusionEntity*> &entities, const Point *start_near = nullptr);
|
||
|
|
||
|
} // namespace Slic3r
|
||
|
|
||
|
#endif /* slic3r_ShortestPath_hpp_ */
|