in src/dimensions.rs [59:63]
fn mul(lhs: usize, rhs: f64) -> usize {
let lhs = lhs as f64; // this might truncate the size if too large
let result = lhs * rhs;
result as usize // this might not be an exact dimension.
}