mirror of https://github.com/hannobraun/Fornjot
Update imports
This commit is contained in:
parent
6fc68a996c
commit
fcfff0a7f5
|
@ -3,12 +3,10 @@ use itertools::Itertools;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
objects::{Cycle, HalfEdge},
|
objects::{Cycle, HalfEdge},
|
||||||
operations::Insert,
|
operations::{BuildHalfEdge, Insert},
|
||||||
services::Services,
|
services::Services,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::BuildHalfEdge;
|
|
||||||
|
|
||||||
/// Build a [`Cycle`]
|
/// Build a [`Cycle`]
|
||||||
pub trait BuildCycle {
|
pub trait BuildCycle {
|
||||||
/// Build an empty cycle
|
/// Build an empty cycle
|
||||||
|
|
|
@ -3,13 +3,14 @@ use fj_math::Point;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
objects::{Cycle, Face, HalfEdge, Surface, Vertex},
|
objects::{Cycle, Face, HalfEdge, Surface, Vertex},
|
||||||
operations::{Insert, IsInserted, IsInsertedNo},
|
operations::{
|
||||||
|
BuildCycle, BuildHalfEdge, BuildSurface, Insert, IsInserted,
|
||||||
|
IsInsertedNo,
|
||||||
|
},
|
||||||
services::Services,
|
services::Services,
|
||||||
storage::Handle,
|
storage::Handle,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{BuildCycle, BuildHalfEdge, BuildSurface};
|
|
||||||
|
|
||||||
/// Build a [`Face`]
|
/// Build a [`Face`]
|
||||||
pub trait BuildFace {
|
pub trait BuildFace {
|
||||||
/// Build a face with an empty exterior, no interiors, and no color
|
/// Build a face with an empty exterior, no interiors, and no color
|
||||||
|
|
|
@ -3,13 +3,12 @@ use fj_math::Point;
|
||||||
use crate::{
|
use crate::{
|
||||||
objects::{Face, Shell},
|
objects::{Face, Shell},
|
||||||
operations::{
|
operations::{
|
||||||
Insert, IsInserted, IsInsertedNo, IsInsertedYes, JoinCycle, UpdateFace,
|
BuildFace, Insert, IsInserted, IsInsertedNo, IsInsertedYes, JoinCycle,
|
||||||
|
Polygon, UpdateFace,
|
||||||
},
|
},
|
||||||
services::Services,
|
services::Services,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::{BuildFace, Polygon};
|
|
||||||
|
|
||||||
/// Build a [`Shell`]
|
/// Build a [`Shell`]
|
||||||
pub trait BuildShell {
|
pub trait BuildShell {
|
||||||
/// Build a tetrahedron from the provided points
|
/// Build a tetrahedron from the provided points
|
||||||
|
|
Loading…
Reference in New Issue