mirror of
https://github.com/hannobraun/Fornjot
synced 2025-02-15 11:45:54 +00:00
Fix InsertIntoSet
implementation of HalfEdge
This commit is contained in:
parent
a4a9c234be
commit
5bb29cedb7
@ -96,6 +96,9 @@ impl InsertIntoSet for GlobalEdge {
|
|||||||
|
|
||||||
impl InsertIntoSet for HalfEdge {
|
impl InsertIntoSet for HalfEdge {
|
||||||
fn insert_into_set(&self, objects: &mut ObjectSet) {
|
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());
|
objects.inner.insert(self.start_vertex().clone().into());
|
||||||
self.start_vertex().insert_into_set(objects);
|
self.start_vertex().insert_into_set(objects);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user