Skip to content

Commit

Permalink
Rename intersection module to intersect
Browse files Browse the repository at this point in the history
The new name better matches the names of the other modules in
`algorithms`, as well as the name of the new `Intersect` trait.
  • Loading branch information
hannobraun committed Aug 12, 2022
1 parent 835e0b3 commit 4e2f55b
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ mod tests {
use pretty_assertions::assert_eq;

use crate::{
algorithms::intersection::CurveFaceIntersection,
algorithms::intersect::CurveFaceIntersection,
objects::{Curve, Face, Surface},
};

Expand Down
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/algorithms/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ mod transform;
mod triangulate;

pub mod cast_ray;
pub mod intersection;
pub mod intersect;

pub use self::{
approx::{CycleApprox, FaceApprox, InvalidTolerance, Tolerance},
Expand Down

0 comments on commit 4e2f55b

Please sign in to comment.