Skip to content

Commit

Permalink
Refactor to prepare for follow-on change
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Apr 30, 2024
1 parent 9be74da commit e032ab1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/fj-core/src/operations/build/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,11 @@ pub trait BuildShell {
.zip_ext([[a, b], [b, c], [c, a]])
.zip_ext(curves_and_boundaries)
.map(|((vertex, positions), (curve, boundary))| {
let boundary = boundary.reverse();

let half_edge = HalfEdge::line_segment(
positions,
Some(boundary.reverse()),
Some(boundary),
surface.clone(),
core,
);
Expand Down

0 comments on commit e032ab1

Please sign in to comment.