This repository has been archived by the owner on May 20, 2019. It is now read-only.
forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrientatedItem.php
97 lines (85 loc) · 1.64 KB
/
OrientatedItem.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
* Box packing (3D bin packing, knapsack problem)
* @package BoxPacker
* @author Doug Wright
*/
namespace DVDoug\BoxPacker;
/**
* An item to be packed
* @author Doug Wright
* @package BoxPacker
*/
class OrientatedItem
{
/**
* @var Item
*/
protected $item;
/**
* @var int
*/
protected $width;
/**
* @var int
*/
protected $length;
/**
* @var int
*/
protected $depth;
/**
* Constructor.
* @param Item $item
* @param int $width
* @param int $length
* @param int $depth
*/
public function __construct(Item $item, $width, $length, $depth) {
$this->item = $item;
$this->width = $width;
$this->length = $length;
$this->depth = $depth;
}
/**
* Item
*
* @return Item
*/
public function getItem() {
return $this->item;
}
/**
* Item width in mm in it's packed orientation
*
* @return int
*/
public function getWidth() {
return $this->width;
}
/**
* Item length in mm in it's packed orientation
*
* @return int
*/
public function getLength() {
return $this->length;
}
/**
* Item depth in mm in it's packed orientation
*
* @return int
*/
public function getDepth() {
return $this->depth;
}
/**
* Is this orientation stable (low centre of gravity)
* N.B. Assumes equal weight distribution
*
* @return bool
*/
public function isStable() {
return $this->getDepth() <= min($this->getLength(), $this->getWidth());
}
}