forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackedItem.php
More file actions
152 lines (133 loc) · 2.33 KB
/
PackedItem.php
File metadata and controls
152 lines (133 loc) · 2.33 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
/**
* Box packing (3D bin packing, knapsack problem)
* @package BoxPacker
* @author Doug Wright
*/
namespace DVDoug\BoxPacker;
/**
* A packed item
* @author Doug Wright
* @package BoxPacker
*/
class PackedItem
{
/**
* @var int
*/
protected $x;
/**
* @var int
*/
protected $y;
/**
* @var int
*/
protected $z;
/**
* @var Item
*/
protected $item;
/**
* @var int
*/
protected $width;
/**
* @var int
*/
protected $length;
/**
* @var int
*/
protected $depth;
/**
* PackedItem constructor.
*
* @param Item $item
* @param int $x
* @param int $y
* @param int $z
* @param int $width
* @param int $length
* @param int $depth
*/
public function __construct(Item $item, $x, $y, $z, $width, $length, $depth)
{
$this->item = $item;
$this->x = $x;
$this->y = $y;
$this->z = $z;
$this->width = $width;
$this->length = $length;
$this->depth = $depth;
}
/**
* @return int
*/
public function getX()
{
return $this->x;
}
/**
* @return int
*/
public function getY()
{
return $this->y;
}
/**
* @return int
*/
public function getZ()
{
return $this->z;
}
/**
* @return Item
*/
public function getItem()
{
return $this->item;
}
/**
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* @return int
*/
public function getLength()
{
return $this->length;
}
/**
* @return int
*/
public function getDepth()
{
return $this->depth;
}
/**
* @param OrientatedItem $orientatedItem
* @param int $x
* @param int $y
* @param int $z
*
* @return PackedItem
*/
public static function fromOrientatedItem(OrientatedItem $orientatedItem, $x, $y, $z)
{
return new static(
$orientatedItem->getItem(),
$x,
$y,
$z,
$orientatedItem->getWidth(),
$orientatedItem->getLength(),
$orientatedItem->getDepth()
);
}
}