Merge branch 'blender-v4.3-release'

This commit is contained in:
Campbell Barton
2024-10-31 18:51:58 +11:00

View File

@@ -3870,7 +3870,7 @@ void BKE_object_foreach_display_point(Object *ob,
float3 co;
if (mesh_eval != nullptr) {
const Span<float3> positions = mesh_eval->vert_positions();
const Span<float3> positions = BKE_mesh_wrapper_vert_coords(mesh_eval);
for (const int i : positions.index_range()) {
mul_v3_m4v3(co, obmat, positions[i]);
func_cb(co, user_data);