Add UpdateHalfEdgeGeometry

It is currently just a placeholder.
This commit is contained in:
Hanno Braun 2024-03-18 13:18:12 +01:00
parent 811a24bac0
commit ec6d03b633
3 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,2 @@
/// Update the geometry of a [`HalfEdge`]
pub trait UpdateHalfEdgeGeometry {}

View File

@ -0,0 +1,5 @@
//! Operations to update the geometry of objects
mod half_edge;
pub use self::half_edge::UpdateHalfEdgeGeometry;

View File

@ -40,6 +40,7 @@
pub mod build;
pub mod derive;
pub mod geometry;
pub mod holes;
pub mod insert;
pub mod join;