Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a possiblity to define distance between contours. #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ PYBIND11_MODULE(nest2D, m)

// The nest function takes two parameters input and box
// see lib/libnest2d/include/libnest2d/libnest2d.hpp
m.def("nest", [](std::vector<Item>& input, const Box& box) {
size_t bins = libnest2d::nest(input, box);
m.def("nest", [](std::vector<Item>& input, const Box& box, const long long int distance) {
size_t bins = libnest2d::nest(input, box, distance);

PackGroup pgrp(bins);

Expand All @@ -87,7 +87,8 @@ PYBIND11_MODULE(nest2D, m)
},
py::arg("input"),
py::arg("box"),
"Nest and pack the input items into the box bin."
py::arg("distance") = 0ll,
"Nest and pack the input items into the box bin with desired distance."
)
;

Expand Down