-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1816 from hannobraun/operations
Clean up operations API
- Loading branch information
Showing
9 changed files
with
54 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
mod cycle; | ||
mod edge; | ||
mod face; | ||
mod shell; | ||
mod solid; | ||
mod surface; | ||
|
||
pub use self::{ | ||
cycle::BuildCycle, | ||
edge::BuildHalfEdge, | ||
face::{BuildFace, Polygon}, | ||
shell::{BuildShell, TetrahedronShell}, | ||
solid::{BuildSolid, Tetrahedron}, | ||
surface::BuildSurface, | ||
}; | ||
pub mod cycle; | ||
pub mod edge; | ||
pub mod face; | ||
pub mod shell; | ||
pub mod solid; | ||
pub mod surface; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
mod cycle; | ||
|
||
pub use self::cycle::JoinCycle; | ||
pub mod cycle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
mod cycle; | ||
mod edge; | ||
mod face; | ||
mod shell; | ||
mod solid; | ||
|
||
pub use self::{ | ||
cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, | ||
shell::UpdateShell, solid::UpdateSolid, | ||
}; | ||
pub mod cycle; | ||
pub mod edge; | ||
pub mod face; | ||
pub mod shell; | ||
pub mod solid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters