This commit is contained in:
Hanno Braun 2022-10-12 15:40:05 +02:00
parent be94ba1641
commit d5efbd1802

View File

@ -107,11 +107,12 @@ impl PartialHalfEdge {
.with_position(Some(point_curve)) .with_position(Some(point_curve))
.with_curve(Some(curve.clone())) .with_curve(Some(curve.clone()))
.with_surface_form(Some(surface_form.clone())) .with_surface_form(Some(surface_form.clone()))
.into()
}) })
}; };
self.curve = Some(curve.into()); self.curve = Some(curve.into());
self.vertices = Some(vertices.map(Into::into)); self.vertices = Some(vertices);
self self
} }