bp3d

1.1.0 • Public • Published

bp3d.js

bp3d.js is 3D Bin Packing library. Code is porting from golang package bp3d which is based on this paper.

Install

yarn add bp3d

Usage

const BinPacking = require('bp3d');

const Item = BinPacking.Item;
const Bin = BinPacking.Bin;
const Packer = BinPacking.Packer;

let bin1 = new Bin("Le petite box", 296, 296, 8, 1000);
let item1 = new Item("Item 1", 250, 250, 2, 200);
let item2 = new Item("Item 2", 250, 250, 2, 200);
let item3 = new Item("Item 3", 250, 250, 2, 200);
let packer = new Packer();

packer.addBin(bin1);
packer.addItem(item1);
packer.addItem(item2);
packer.addItem(item3);

// pack items into bin1
packer.pack();

// item1, item2, item3
console.log(bin1.items);

// items will be empty, all items was packed
console.log(packer.items);

// unfitItems will be empty, all items fit into bin1
console.log(packer.unfitItems)

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i bp3d

Weekly Downloads

499

Version

1.1.0

License

MIT

Last publish

Collaborators

  • olragon