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 geo::Polygon;
use crate::math::Plane;
use crate::geometry::Plane;
pub trait SurfaceGeometry {
fn point_from_local(&self, point: Point<2>) -> Point<3>;

View File

@ -3,7 +3,6 @@
mod extra;
mod geometry;
mod handle;
mod math;
mod model;
mod operations;
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 crate::{
geometry::{Sketch, ToTriMesh},
geometry::{Plane, Sketch, ToTriMesh},
handle::Handle,
math::Plane,
operations::sweep::SweepExt,
topology::surface::Surface,
};

View File

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