-
First off, thank you for putting the effort into this. It's a really difficult problem to solve. I'm working on a project right now that does shipping 100% by volume, which is easy, but not really smart In any case the docs say: If I'm reading this right, and item that is say 5x4x1 (20 cubic inches) would "fit" into a box that's 10x2x2 (40 cubic inches) by volume - which doesn't seem right. Is that accurate? I'm likely just misreading the docs but I want to make sure. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi Physical limitations are absolutely respected, the documentation there is referring to the amount of 'smarts' the algorithm uses. The boxes are packed (mostly) in size order, there are just limits on the amount of "box tetris" that is used. Hope that helps? |
Beta Was this translation helpful? Give feedback.
-
Hey one more question @dvdoug - how do you handle items with decimal points? One of the big challenges is many of the items we'll see are items like pens, which would be something like 6x0.5x0.5 - box packer seems to round this down to 0 and it causes some weird visualizations. I was curious if you had any recommendations. My devs are testing a few options but I was curious if you'd figured this out THANK YOU again |
Beta Was this translation helpful? Give feedback.
Hi
Physical limitations are absolutely respected, the documentation there is referring to the amount of 'smarts' the algorithm uses. The boxes are packed (mostly) in size order, there are just limits on the amount of "box tetris" that is used.
Hope that helps?