Prepare for follow-on change

This commit is contained in:
Hanno Braun 2024-06-27 20:17:23 +02:00
parent 48586c15b5
commit 42e39bb668

View File

@ -22,8 +22,8 @@ impl TransformObject for (&Handle<Cycle>, &Handle<Surface>) {
let half_edges = cycle
.half_edges()
.iter()
.map(|half_edge| {
.pairs()
.map(|(half_edge, _)| {
(half_edge, surface)
.transform_with_cache(transform, core, cache)
})