mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-12 05:48:27 +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 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>;
|
||||||
|
@ -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;
|
||||||
|
@ -1 +0,0 @@
|
|||||||
pub use crate::geometry::Plane;
|
|
@ -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,
|
||||||
};
|
};
|
||||||
|
@ -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},
|
||||||
|
Loading…
Reference in New Issue
Block a user