0.0.5 • Published 9 years ago

3dBinPack v0.0.5

Weekly downloads
38
License
-
Repository
github
Last release
9 years ago

3D BIN PACK

Find out if a bin can contain the given packages.

Example usage:

var ThreeDimensionBinPack = require('./index.js')();

// Create a bin with dimensions h, w, d
var bin = new ThreeDimensionBinPack.Bin(10, 9, 11);

// Add your packages to the bin
bin.addPackage(2,4,8);
bin.addPackage(2,2,10);
bin.addPackage(2,5,10);

// Determine if the packages will fit into the bin
bin.doesFit(function(packagesFitInsideBin){
    console.log('does it fit? '+packagesFitInsideBin);
});
0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago