Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ripytide committed Jun 28, 2024
1 parent 55d5af4 commit 38b5908
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/distance_transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,9 @@ mod tests {
r
}

pub fn euclidean_squared_distance_transform_reference(image: &Image<Luma<u8>>) -> Image<Luma<f64>> {
pub fn euclidean_squared_distance_transform_reference(
image: &Image<Luma<u8>>,
) -> Image<Luma<f64>> {
let (width, height) = image.dimensions();

let mut dists = Image::new(width, height);
Expand Down

0 comments on commit 38b5908

Please sign in to comment.