pub fn lookup_requirement_html_label_width_em(text: &str, bold: bool) -> Option<f64> {
match (text, bold) {
("<<Performance Requirement>>", false) => Some(13.8095703125),
("Type: simulation", false) => Some(7.380859375),
("Verification: Analysis", false) => Some(9.33984375),
_ => None,
}
}
pub fn lookup_requirement_calc_max_width_px(calc_text: &str) -> Option<i64> {
match calc_text {
"<<Performance Requirement>>" => Some(329),
"Type: simulation" => Some(159),
"Verification: Analysis" => Some(190),
_ => None,
}
}