()
| 35 | "z1" => (0.34, 0.125), // 1/8 |
| 36 | "no" => (0.25, 0.16667), // 1/6 |
| 37 | _ => (0.34, 0.125), |
| 38 | }; |
| 39 | |
| 40 | let (base_x, base_y) = if position.starts_with('(') && position.ends_with(')') { |
| 41 | let inner = &position[1..position.len() - 1]; |
| 42 | let parts: Vec<&str> = inner.split(',').collect(); |