Skip to content

Commit

Permalink
Fix cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
weitsang committed May 27, 2024
1 parent 3fdc5fe commit 5642d35
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions src/render/wgpu/upsampler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,12 @@ use kiddo::{distance::squared_euclidean, KdTree};
use rayon::iter::{IntoParallelIterator, IntoParallelRefIterator, ParallelIterator};

use crate::{
formats::{
bounds::Bounds,
pointxyzrgba::PointXyzRgba,
PointCloud
},
formats::{bounds::Bounds, pointxyzrgba::PointXyzRgba, PointCloud},
utils::get_pc_bound,
};
use std::{
cmp::min,
collections::HashSet,
};
use std::{cmp::min, collections::HashSet};

use super::{
camera::CameraState,
renderable::Renderable
};
use super::{camera::CameraState, renderable::Renderable};

pub struct Upsampler {}

Expand Down

0 comments on commit 5642d35

Please sign in to comment.