diff --git a/src/dsn/mesadata.rs b/src/dsn/mesadata.rs index 253b901..8f55ee6 100644 --- a/src/dsn/mesadata.rs +++ b/src/dsn/mesadata.rs @@ -17,8 +17,8 @@ pub struct DsnRule { impl DsnRule { fn from_dsn(rule: &super::structure::Rule) -> Self { Self { - width: rule.width as f64 / 100.0, - clearance: rule.clearance_vec[0].value as f64 / 100.0, // picks the generic clearance only for now + width: rule.width as f64, + clearance: rule.clearance_vec[0].value as f64, // picks the generic clearance only for now } } }