add list of printed parts to BuildPlan and mdbook overview
This commit is contained in:
parent
3c696980a8
commit
acf2e040c3
3 changed files with 109 additions and 13 deletions
|
|
@ -62,3 +62,10 @@ impl std::ops::Add<&Quantity> for Quantity {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl std::ops::AddAssign<usize> for Quantity {
|
||||
fn add_assign(&mut self, rhs: usize) {
|
||||
assert_eq!(self.unit, None);
|
||||
self.amount += rhs as f32;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue