pub trait MinimumSpacing: DistanceRuleBase {
    fn min_spacing_absolute(
        &self,
        layer: &Self::LayerId
    ) -> Option<Self::Distance>; fn min_spacing(
        &self,
        layer: &Self::LayerId,
        run_length: Self::Distance,
        width: Self::Distance
    ) -> Option<Self::Distance>; }
Expand description

Minimum spacing rules between shapes on the same layer.

Required Methods

Absolute minimum spacing between two shapes on the layer.

Minimum spacing between two shapes on the layer dependent on the geometries.

Implementors