Remove redundant re-export

This commit is contained in:
Hanno Braun 2025-03-21 23:10:12 +01:00
parent a46683aff3
commit 0a94adf4ea
2 changed files with 4 additions and 6 deletions

View File

@ -2,8 +2,6 @@ mod sketch;
mod surface;
mod tri_mesh;
pub use self::{
sketch::Sketch,
surface::SurfaceGeometry,
tri_mesh::{ToTriMesh, TriMesh},
};
pub use self::{sketch::Sketch, surface::SurfaceGeometry, tri_mesh::ToTriMesh};
pub use fj_interop::TriMesh;

View File

@ -1,4 +1,4 @@
pub use fj_interop::TriMesh;
use fj_interop::TriMesh;
pub trait ToTriMesh {
fn to_tri_mesh(&self) -> TriMesh;