Remove redundant re-export

This commit is contained in:
Hanno Braun 2025-04-08 10:54:43 +02:00
parent 093562011a
commit a35c0ffad5
5 changed files with 3 additions and 6 deletions

View File

@ -1,7 +1,7 @@
use fj_math::{Point, Vector}; use fj_math::{Point, Vector};
use geo::Polygon; use geo::Polygon;
use crate::math::Plane; use crate::geometry::Plane;
pub trait SurfaceGeometry { pub trait SurfaceGeometry {
fn point_from_local(&self, point: Point<2>) -> Point<3>; fn point_from_local(&self, point: Point<2>) -> Point<3>;

View File

@ -3,7 +3,6 @@
mod extra; mod extra;
mod geometry; mod geometry;
mod handle; mod handle;
mod math;
mod model; mod model;
mod operations; mod operations;
mod topology; mod topology;

View File

@ -1 +0,0 @@
pub use crate::geometry::Plane;

View File

@ -3,9 +3,8 @@ use fj_math::{Bivector, Point, Vector};
use fj_viewer::Viewer; use fj_viewer::Viewer;
use crate::{ use crate::{
geometry::{Sketch, ToTriMesh}, geometry::{Plane, Sketch, ToTriMesh},
handle::Handle, handle::Handle,
math::Plane,
operations::sweep::SweepExt, operations::sweep::SweepExt,
topology::surface::Surface, topology::surface::Surface,
}; };

View File

@ -1,8 +1,8 @@
use itertools::Itertools; use itertools::Itertools;
use crate::{ use crate::{
geometry::Plane,
handle::Handle, handle::Handle,
math::Plane,
topology::{ topology::{
curve::Curve, curve::Curve,
face::{Face, HalfEdgeWithEndVertex}, face::{Face, HalfEdgeWithEndVertex},