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:
authorCampbell Barton <ideasman42@gmail.com>2017-10-02 05:21:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-02 14:07:57 +0300
commit9d34ae604827813ead8c9071ff1c346e9aff7e29 (patch)
treeb844e5fab3f4d7c6c35509ed35990af7d9e56e41 /source/blender/editors/sculpt_paint/sculpt_intern.h
parent1cfee604193bed201ea2003c1f86b30da3b4035f (diff)
Sculpt: calculate plane instead of point,normal
No functional changes.
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 05b33517a35..7d9d3ad783d 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -181,6 +181,9 @@ typedef struct SculptBrushTest {
float dist;
int mirror_symmetry_pass;
+ /* For circle (not sphere) projection. */
+ float plane[4];
+
/* View3d clipping - only set rv3d for clipping */
struct RegionView3D *clip_rv3d;
} SculptBrushTest;