Geometry Nodes: Rewrite mesh delete geometry node #108435

Merged
Hans Goudey merged 24 commits from HooglyBoogly/blender:delete-mesh-rewrite into main 2023-06-01 14:55:27 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9fdb0eadf3 - Show all commits

View File

@ -46,8 +46,8 @@ OffsetIndices<int> gather_selected_offsets(const OffsetIndices<int> src_offsets,
return {};
}
BLI_assert(selection.size() == (dst_offsets.size() - 1));
offset_indices::gather_group_sizes(src_offsets, selection, dst_offsets);
offset_indices::accumulate_counts_to_offsets(dst_offsets);
gather_group_sizes(src_offsets, selection, dst_offsets);
HooglyBoogly marked this conversation as resolved Outdated

The offset_indices:: is not necessary here.

The `offset_indices::` is not necessary here.
accumulate_counts_to_offsets(dst_offsets);
return OffsetIndices<int>(dst_offsets);
}