3dBinPack

0.0.5 • Public • Published

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);
});

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i 3dBinPack

    Weekly Downloads

    13

    Version

    0.0.5

    License

    none

    Last publish

    Collaborators

    • comster