CurvesGeometry: Add initial vertex group support #106944

Merged
Falk David merged 24 commits from filedescriptor/blender:curves-deform-verts into main 2023-09-27 10:26:16 +02:00
Showing only changes of commit c1047f5902 - Show all commits

View File

@ -25,7 +25,7 @@
#include "BKE_attribute_math.hh"
#include "BKE_curves.h"
#include "DNA_meshdata_types.h"
struct MDeformVert;
filedescriptor marked this conversation as resolved Outdated

Does it work to forward declare MDeformVert? It would be nice not to include DNA_meshdata_types.h in the curves header.

Does it work to forward declare `MDeformVert`? It would be nice not to include `DNA_meshdata_types.h` in the curves header.
namespace blender::bke {