From 6a4df70d4119f881f4aec78f4943de1cf68957a1 Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Mon, 9 Sep 2019 15:42:51 +0200 Subject: Sculpt: Mesh Filter Tool The mesh filter tool applies a deformation to all vertices in the mesh at the same time. It includes multiple deformation modes and the option to lock the deformation axis. This commit also includes the FilterCache, which is needed in some new operators and tools. Reviewed By: brecht Differential Revision: https://developer.blender.org/D5513 --- source/blender/blenkernel/BKE_paint.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/blenkernel/BKE_paint.h') diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h index ed02a34196f..ef798479b23 100644 --- a/source/blender/blenkernel/BKE_paint.h +++ b/source/blender/blenkernel/BKE_paint.h @@ -256,6 +256,7 @@ typedef struct SculptSession { float (*layer_co)[3]; /* Copy of the mesh vertices' locations */ struct StrokeCache *cache; + struct FilterCache *filter_cache; /* Cursor data and active vertex for tools */ int active_vertex_index; -- cgit v1.2.3