F37PVGYNMSVNJG2T34JTZNDMFUH552KBNWEHSZUHPQINGBB5L55QC /// Remove a plank from this rowpub fn pop(&mut self, ms: &mut MaterialStorage) {// Remove the plankif let Some(plank) = self.planks.pop() {ms.store_used(plank);// Update the row coverageself.coverage -= plank.length();}// Remove the cutif let Some(cut) = self.cut_coordinates.pop() {println!("Removed cut at {}", cut.coordinate);}}