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
use crate::bin_section::BinSection;
use crate::width_height_depth::WidthHeightDepth;
mod coalesce;
mod push_available_bin_section;
#[derive(Debug, Clone)]
pub struct TargetBin {
pub(crate) max_width: u32,
pub(crate) max_height: u32,
pub(crate) max_depth: u32,
pub(crate) available_bin_sections: Vec<BinSection>,
}
impl TargetBin {
#[allow(missing_docs)]
pub fn new(max_width: u32, max_height: u32, max_depth: u32) -> Self {
let available_bin_sections = vec![BinSection::new(
0,
0,
0,
WidthHeightDepth {
width: max_width,
height: max_height,
depth: max_depth,
},
)];
TargetBin {
max_width,
max_height,
max_depth,
available_bin_sections,
}
}
pub fn available_bin_sections(&self) -> &Vec<BinSection> {
&self.available_bin_sections
}
pub fn remove_filled_section(&mut self, idx: usize) {
self.available_bin_sections.remove(idx);
}
pub fn add_new_sections(&mut self, new_sections: [BinSection; 3]) {
for new_section in new_sections.iter() {
if new_section.whd.volume() > 0 {
self.available_bin_sections.push(*new_section);
}
}
}
}