forked from phux/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrientatedItem.php
83 lines (72 loc) · 1.35 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
<?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;
}
}