mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-09 12:28:29 +00:00
Remove redundant re-export
This commit is contained in:
parent
093562011a
commit
a35c0ffad5
@ -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>;
|
||||
|
@ -3,7 +3,6 @@
|
||||
mod extra;
|
||||
mod geometry;
|
||||
mod handle;
|
||||
mod math;
|
||||
mod model;
|
||||
mod operations;
|
||||
mod topology;
|
||||
|
@ -1 +0,0 @@
|
||||
pub use crate::geometry::Plane;
|
@ -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,
|
||||
};
|
||||
|
@ -1,8 +1,8 @@
|
||||
use itertools::Itertools;
|
||||
|
||||
use crate::{
|
||||
geometry::Plane,
|
||||
handle::Handle,
|
||||
math::Plane,
|
||||
topology::{
|
||||
curve::Curve,
|
||||
face::{Face, HalfEdgeWithEndVertex},
|
||||
|
Loading…
Reference in New Issue
Block a user