Skip to content

Commit

Permalink
Fix InsertIntoSet implementation of HalfEdge
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Aug 18, 2023
1 parent a4a9c23 commit 5bb29ce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/fj-core/src/objects/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ impl InsertIntoSet for GlobalEdge {

impl InsertIntoSet for HalfEdge {
fn insert_into_set(&self, objects: &mut ObjectSet) {
objects.inner.insert(self.curve().clone().into());
self.curve().insert_into_set(objects);

objects.inner.insert(self.start_vertex().clone().into());
self.start_vertex().insert_into_set(objects);

Expand Down

0 comments on commit 5bb29ce

Please sign in to comment.