Fix: False positive geometry randomization in split edges node

See cc7da09c1b.

Splitting edges only potentially affects the order of edges and
vertices. Face corner vertex and edge indices are affected, but their
order isn't affected, and faces aren't affected at all. This didn't
cause problems, but correcting it shows users they can rely on
these consistencies after this operation.
This commit is contained in:
Hans Goudey 2023-10-06 16:46:49 -04:00
parent bef0d6c067
commit 36f7d33121
1 changed files with 2 additions and 1 deletions

View File

@ -597,7 +597,8 @@ void split_edges(Mesh &mesh,
BKE_mesh_tag_edges_split(&mesh);
debug_randomize_mesh_order(&mesh);
debug_randomize_vertex_order(&mesh);
debug_randomize_edge_order(&mesh);
}
} // namespace blender::geometry