mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
Adding rotating calipers algorithm for minimum are bounding box rotation.
Cleanup, fix build on windows and add test for rotcalipers. Try to fix compilation on windows With updates from libnest2d Another build fix. Clean up and add comments. adding rotcalipers test and some cleanup Trying to fix on OSX Fix rotcalipers array indexing Get rid of boost convex hull. Adding helper function 'remove_collinear_points' Importing new libnest2d upgrades. Disable using __int128 in NFP on OSX
This commit is contained in:
parent
6136fe7d92
commit
d4fe7b5a96
25 changed files with 1272 additions and 856 deletions
|
@ -47,6 +47,17 @@ using NfpPlacer = _NfpPlacer<Box>;
|
|||
// This supports only box shaped bins
|
||||
using BottomLeftPlacer = placers::_BottomLeftPlacer<PolygonImpl>;
|
||||
|
||||
#ifdef LIBNEST2D_STATIC
|
||||
|
||||
extern template class Nester<NfpPlacer, FirstFitSelection>;
|
||||
extern template class Nester<BottomLeftPlacer, FirstFitSelection>;
|
||||
extern template PackGroup Nester<NfpPlacer, FirstFitSelection>::execute(
|
||||
std::vector<Item>::iterator, std::vector<Item>::iterator);
|
||||
extern template PackGroup Nester<BottomLeftPlacer, FirstFitSelection>::execute(
|
||||
std::vector<Item>::iterator, std::vector<Item>::iterator);
|
||||
|
||||
#endif
|
||||
|
||||
template<class Placer = NfpPlacer,
|
||||
class Selector = FirstFitSelection,
|
||||
class Iterator = std::vector<Item>::iterator>
|
||||
|
@ -60,19 +71,6 @@ PackGroup nest(Iterator from, Iterator to,
|
|||
return nester.execute(from, to);
|
||||
}
|
||||
|
||||
template<class Placer = NfpPlacer,
|
||||
class Selector = FirstFitSelection,
|
||||
class Container = std::vector<Item>>
|
||||
PackGroup nest(Container&& cont,
|
||||
const typename Placer::BinType& bin,
|
||||
Coord dist = 0,
|
||||
const typename Placer::Config& pconf = {},
|
||||
const typename Selector::Config& sconf = {})
|
||||
{
|
||||
return nest<Placer, Selector>(cont.begin(), cont.end(),
|
||||
bin, dist, pconf, sconf);
|
||||
}
|
||||
|
||||
template<class Placer = NfpPlacer,
|
||||
class Selector = FirstFitSelection,
|
||||
class Iterator = std::vector<Item>::iterator>
|
||||
|
@ -90,6 +88,42 @@ PackGroup nest(Iterator from, Iterator to,
|
|||
return nester.execute(from, to);
|
||||
}
|
||||
|
||||
#ifdef LIBNEST2D_STATIC
|
||||
|
||||
extern template class Nester<NfpPlacer, FirstFitSelection>;
|
||||
extern template class Nester<BottomLeftPlacer, FirstFitSelection>;
|
||||
|
||||
extern template PackGroup nest(std::vector<Item>::iterator from,
|
||||
std::vector<Item>::iterator to,
|
||||
const Box& bin,
|
||||
Coord dist = 0,
|
||||
const NfpPlacer::Config& pconf,
|
||||
const FirstFitSelection::Config& sconf);
|
||||
|
||||
extern template PackGroup nest(std::vector<Item>::iterator from,
|
||||
std::vector<Item>::iterator to,
|
||||
const Box& bin,
|
||||
ProgressFunction prg,
|
||||
StopCondition scond,
|
||||
Coord dist = 0,
|
||||
const NfpPlacer::Config& pconf,
|
||||
const FirstFitSelection::Config& sconf);
|
||||
|
||||
#endif
|
||||
|
||||
template<class Placer = NfpPlacer,
|
||||
class Selector = FirstFitSelection,
|
||||
class Container = std::vector<Item>>
|
||||
PackGroup nest(Container&& cont,
|
||||
const typename Placer::BinType& bin,
|
||||
Coord dist = 0,
|
||||
const typename Placer::Config& pconf = {},
|
||||
const typename Selector::Config& sconf = {})
|
||||
{
|
||||
return nest<Placer, Selector>(cont.begin(), cont.end(),
|
||||
bin, dist, pconf, sconf);
|
||||
}
|
||||
|
||||
template<class Placer = NfpPlacer,
|
||||
class Selector = FirstFitSelection,
|
||||
class Container = std::vector<Item>>
|
||||
|
@ -105,71 +139,6 @@ PackGroup nest(Container&& cont,
|
|||
bin, prg, scond, dist, pconf, sconf);
|
||||
}
|
||||
|
||||
#ifdef LIBNEST2D_STATIC
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>&>(
|
||||
std::vector<Item>& cont,
|
||||
const Box& bin,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>&>(
|
||||
std::vector<Item>& cont,
|
||||
const Box& bin,
|
||||
ProgressFunction prg,
|
||||
StopCondition scond,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>>(
|
||||
std::vector<Item>&& cont,
|
||||
const Box& bin,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>>(
|
||||
std::vector<Item>&& cont,
|
||||
const Box& bin,
|
||||
ProgressFunction prg,
|
||||
StopCondition scond,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>::iterator>(
|
||||
std::vector<Item>::iterator from,
|
||||
std::vector<Item>::iterator to,
|
||||
const Box& bin,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
extern template
|
||||
PackGroup nest<NfpPlacer, FirstFitSelection, std::vector<Item>::iterator>(
|
||||
std::vector<Item>::iterator from,
|
||||
std::vector<Item>::iterator to,
|
||||
const Box& bin,
|
||||
ProgressFunction prg,
|
||||
StopCondition scond,
|
||||
Coord dist,
|
||||
const NfpPlacer::Config& pcfg,
|
||||
const FirstFitSelection::Config& scfg
|
||||
);
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
#endif // LIBNEST2D_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue