Cleanup: Remove redundant assignment of loose edge flag

This is assigned by `BKE_mesh_calc_edges_loose` a few lines below.
This commit is contained in:
Hans Goudey 2022-11-05 13:26:44 +01:00
parent 38086dcfdc
commit e673f3ba24
1 changed files with 0 additions and 1 deletions

View File

@ -254,7 +254,6 @@ void MeshFromGeometry::create_edges(Mesh *mesh)
dst_edge.v1 = mesh_geometry_.global_to_local_vertices_.lookup_default(src_edge.v1, 0);
dst_edge.v2 = mesh_geometry_.global_to_local_vertices_.lookup_default(src_edge.v2, 0);
BLI_assert(dst_edge.v1 < total_verts && dst_edge.v2 < total_verts);
dst_edge.flag = ME_LOOSEEDGE;
}
/* Set argument `update` to true so that existing, explicitly imported edges can be merged