Fix #124419: Smooth brush broken for larger meshes
Simple mistake in 68d6bf56e5.
This commit is contained in:
@@ -147,7 +147,10 @@ BLI_NOINLINE static void do_smooth_brush_mesh(const Sculpt &sd,
|
||||
verts,
|
||||
tls.vert_neighbors);
|
||||
smooth::neighbor_position_average_mesh(
|
||||
positions_eval, verts, tls.vert_neighbors, new_positions);
|
||||
positions_eval,
|
||||
verts,
|
||||
tls.vert_neighbors,
|
||||
new_positions.as_mutable_span().slice(node_vert_offsets[i]));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user