Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Dobarro <pablodp606@gmail.com>2020-03-10 21:01:57 +0300
committerPablo Dobarro <pablodp606@gmail.com>2020-03-12 22:35:52 +0300
commit088b92b92ceec1f69c55740b09683fe10d472422 (patch)
treee8427eb5b0f2aa7d267e249db3ebbd69a4fff252 /source/blender/editors/sculpt_paint/sculpt_intern.h
parent472534d16e9ca342dd236416d39a64df6f6a5fe0 (diff)
Fix mesh shrinking when using the relax mesh filter.
If the relax mesh filter was used on a non manifold mesh with open boundaries, all the vertices were relaxed and the mesh was shrinking. This was an unintended behavior that was making the filter unusable with these meshes. The mesh filter is now initializing an automasking buffer using the same boundary automasking function from the brush code. Now edges are preserved and the relax filter works as it should. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D7097
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_intern.h')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 7f90f86edd4..4e36ae7aa5e 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -663,6 +663,9 @@ typedef struct FilterCache {
float *prev_mask;
float mask_expand_initial_co[3];
+ /* Used to prevent undesired results on certain mesh filters. */
+ float *automask;
+
int new_face_set;
int *prev_face_set;