Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Nov 29, 2023
1 parent 4c1e050 commit 79fbbae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/fj-core/src/operations/sweep/region.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,10 @@ impl SweepRegion for Region {
let top_surface =
surface.translate(path, services).insert(services);
let top_region =
Region::new(top_exterior, top_interiors, self.color());
Region::new(top_exterior, top_interiors, self.color())
.insert(services);

Face::new(top_surface, top_region.insert(services))
Face::new(top_surface, top_region)
};
faces.push(top_face);

Expand Down

0 comments on commit 79fbbae

Please sign in to comment.