Skip to content

Commit

Permalink
Remove unused curve/half-edge intersection check
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 18, 2024
1 parent f934771 commit b8414bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 151 deletions.
147 changes: 0 additions & 147 deletions crates/fj-core/src/algorithms/intersect/curve_edge.rs

This file was deleted.

5 changes: 1 addition & 4 deletions crates/fj-core/src/algorithms/intersect/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ pub mod face_point;
pub mod ray_edge;
pub mod ray_segment;

mod curve_edge;
mod line_segment;

use fj_math::{Point, Vector};

pub use self::{
curve_edge::CurveEdgeIntersection, line_segment::LineSegmentIntersection,
};
pub use self::line_segment::LineSegmentIntersection;

/// Compute the intersection between a tuple of objects
///
Expand Down

0 comments on commit b8414bf

Please sign in to comment.