mirror of
https://github.com/hannobraun/Fornjot
synced 2025-07-17 15:36:11 +00:00
Remove redundant re-exports
This commit is contained in:
parent
a286059145
commit
a489484f95
@ -1,7 +1,7 @@
|
||||
use crate::{
|
||||
math::{Plane, Point},
|
||||
storage::Store,
|
||||
topology::{Face, Vertex},
|
||||
topology::{face::Face, vertex::Vertex},
|
||||
};
|
||||
|
||||
use super::Handle;
|
||||
|
@ -2,7 +2,7 @@ use crate::{
|
||||
geometry::{AnyOp, Sketch},
|
||||
math::{Bivector, Plane, Point, Vector},
|
||||
storage::Stores,
|
||||
topology::Solid,
|
||||
topology::solid::Solid,
|
||||
};
|
||||
|
||||
pub fn model() -> AnyOp {
|
||||
|
@ -3,7 +3,7 @@ use std::marker::PhantomData;
|
||||
use crate::{
|
||||
geometry::Handle,
|
||||
math::Plane,
|
||||
topology::{Face, Vertex},
|
||||
topology::{face::Face, vertex::Vertex},
|
||||
};
|
||||
|
||||
#[derive(Default)]
|
||||
|
@ -7,7 +7,7 @@ use crate::{
|
||||
storage::Store,
|
||||
};
|
||||
|
||||
use super::Vertex;
|
||||
use super::vertex::Vertex;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct Face {
|
||||
|
@ -2,5 +2,3 @@ pub mod face;
|
||||
pub mod solid;
|
||||
pub mod sweep;
|
||||
pub mod vertex;
|
||||
|
||||
pub use self::{face::Face, solid::Solid, vertex::Vertex};
|
||||
|
@ -4,7 +4,7 @@ use crate::{
|
||||
storage::Store,
|
||||
};
|
||||
|
||||
use super::{sweep::SweepExt, Face, Vertex};
|
||||
use super::{face::Face, sweep::SweepExt, vertex::Vertex};
|
||||
|
||||
pub struct Solid {
|
||||
faces: Vec<Handle<Face>>,
|
||||
|
@ -4,7 +4,7 @@ use crate::{
|
||||
storage::Store,
|
||||
};
|
||||
|
||||
use super::{Face, Solid, Vertex};
|
||||
use super::{face::Face, solid::Solid, vertex::Vertex};
|
||||
|
||||
pub trait SweepExt {
|
||||
/// Sweep a face along a path, creating a solid
|
||||
|
Loading…
x
Reference in New Issue
Block a user