mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-09 08:17:45 -07:00
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
#include <libnest2d/libnest2d.hpp>
|
|
|
|
namespace libnest2d {
|
|
|
|
template class _Nester<NfpPlacer, FirstFitSelection>;
|
|
template class _Nester<BottomLeftPlacer, FirstFitSelection>;
|
|
|
|
template std::size_t _Nester<NfpPlacer, FirstFitSelection>::execute(
|
|
std::vector<Item>::iterator, std::vector<Item>::iterator);
|
|
template std::size_t _Nester<BottomLeftPlacer, FirstFitSelection>::execute(
|
|
std::vector<Item>::iterator, std::vector<Item>::iterator);
|
|
|
|
template std::size_t nest(std::vector<Item>::iterator from,
|
|
std::vector<Item>::iterator to,
|
|
const Box & bin,
|
|
Coord dist,
|
|
const NestConfig<NfpPlacer, FirstFitSelection> &cfg,
|
|
NestControl ctl);
|
|
|
|
template std::size_t nest(std::vector<Item>::iterator from,
|
|
std::vector<Item>::iterator to,
|
|
const Box & bin,
|
|
Coord dist,
|
|
const NestConfig<BottomLeftPlacer, FirstFitSelection> &cfg,
|
|
NestControl ctl);
|
|
}
|