Skip to content

Commit

Permalink
Merge pull request #596 from hannobraun/topo
Browse files Browse the repository at this point in the history
Simplify names of `topology` modules
  • Loading branch information
hannobraun authored May 17, 2022
2 parents 8ed4911 + 85a75ff commit 080917d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::{
shape::{Handle, LocalForm, Shape},
};

use super::{vertices::Vertex, EdgeBuilder};
use super::{EdgeBuilder, Vertex};

/// An edge of a shape
///
Expand Down
File renamed without changes.
16 changes: 8 additions & 8 deletions crates/fj-kernel/src/topology/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
//! refer to objects in the same memory location.
mod builder;
mod cycles;
mod edges;
mod faces;
mod vertices;
mod cycle;
mod edge;
mod face;
mod vertex;

pub use self::{
builder::{CycleBuilder, EdgeBuilder, FaceBuilder, VertexBuilder},
cycles::Cycle,
edges::Edge,
faces::{CyclesInFace, Face},
vertices::Vertex,
cycle::Cycle,
edge::Edge,
face::{CyclesInFace, Face},
vertex::Vertex,
};
File renamed without changes.

0 comments on commit 080917d

Please sign in to comment.