Skip to content

Commit 2dd3912

Browse files
committed
buzz: fix clippy lint
1 parent bb5e727 commit 2dd3912

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

buzz/examples/csg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use geo::{mat4::Mat4, sdf::*, v3, Vec3};
22
use sketch_utils::opener;
33

4-
use buzz::{csg::SdfGeometry, *};
4+
use buzz::*;
55

66
pub fn main() -> opener::Result<()> {
77
let plane = SimpleObject::new(

buzz/src/object/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pub mod facet;
2-
pub mod simple_object;
1+
mod facet;
2+
mod simple_object;
33

44
use std::ops::{Deref, DerefMut};
55

buzz/src/objectgeo/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
pub mod csg;
2-
pub mod cube;
3-
pub mod cylinder;
4-
pub mod facet;
5-
pub mod plane;
6-
pub mod sphere;
7-
pub mod transformed;
1+
mod csg;
2+
mod cube;
3+
mod cylinder;
4+
mod facet;
5+
mod plane;
6+
mod sphere;
7+
mod transformed;
88

99
pub use csg::SdfGeometry;
1010
pub use cube::CubeGeometry;

0 commit comments

Comments
 (0)