Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aslamhus committed Feb 14, 2024
1 parent b10be59 commit f86c8ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Rectangle Packer v2.0.0
# Rectangle Packer

`RectanglePacker` is a JavaScript\PHP class designed to efficiently pack rectangles of the same aspect ratio into a defined space, tackling the NP-hard bin packing problem using a heuristic algorithm. For more information on the this problem see the [wiki](https://en.wikipedia.org/wiki/Rectangle_packing). This heuristic solves the second variant listed in the article, _**Packing identical squares in a rectilinear polygon.**_

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rectanglepacker",
"version": "2.0.0",
"version": "2.1.0",
"description": "heuristic algorithm for efficiently packing rectangles of a fixed aspect ratio into a defined space, addressing the NP-hard bin packing problem through iterative adjustment of tile sizes and arrangement.",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/RectPacker/RectPacker.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Exception;

/**
* # Rectangle Packer v2.0.0
* # Rectangle Packer v2.1.0
* by @aslamhus
*
* ## Introduction
Expand Down
2 changes: 1 addition & 1 deletion src/RectanglePacker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* # Rectangle Packer v2.0.0
* # Rectangle Packer v2.1.0
* by @aslamhus
*
*
Expand Down

0 comments on commit f86c8ae

Please sign in to comment.