[Bf-blender-cvs] [df545612337] master: Cleanup: Fix incorrect comments in mesh extrude node

Hans Goudey noreply at git.blender.org
Tue Jan 17 19:50:24 CET 2023


Commit: df5456123377cb5ad5940af1b9a71ede481309d3
Author: Hans Goudey
Date:   Tue Jan 17 12:17:07 2023 -0600
Branches: master
https://developer.blender.org/rBdf5456123377cb5ad5940af1b9a71ede481309d3

Cleanup: Fix incorrect comments in mesh extrude node

===================================================================

M	source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc

===================================================================

diff --git a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
index 29a5cb9b83c..28691252729 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_extrude_mesh.cc
@@ -87,10 +87,6 @@ static void save_selection_as_attribute(Mesh &mesh,
   attribute.finish();
 }
 
-/**
- * \note Some areas in this file rely on the new sections of attributes from #CustomData_realloc
- * to be zeroed.
- */
 static void expand_mesh(Mesh &mesh,
                         const int vert_expand,
                         const int edge_expand,
@@ -389,7 +385,7 @@ static void extrude_mesh_edges(Mesh &mesh,
   const Array<Vector<int, 2>> edge_to_poly_map = mesh_calculate_polys_of_edge(mesh);
 
   /* Find the offsets on the vertex domain for translation. This must be done before the mesh's
-   * custom data layers are reallocated, in case the virtual array references on of them. */
+   * custom data layers are reallocated, in case the virtual array references one of them. */
   Array<float3> vert_offsets;
   if (!edge_offsets.is_single()) {
     vert_offsets.reinitialize(orig_vert_size);
@@ -1367,8 +1363,6 @@ static void node_geo_exec(GeoNodeExecParams params)
           break;
         }
       }
-
-      BLI_assert(BKE_mesh_is_valid(mesh));
     }
   });



More information about the Bf-blender-cvs mailing list