From 6ee6a42d10e3c1c0868d1f038401d525264a7e24 Mon Sep 17 00:00:00 2001 From: Pablo Dobarro Date: Tue, 11 Feb 2020 20:04:41 +0100 Subject: Sculpt: Clay Strips Tip Roundness property This patch allow to change the brush tip shape between a square and a circle using a brush property. After this change we are no longer testing the distance against a cube (the Z axis is not used). I did not test this in depth, but if it does not produce any artifacts I think we can keep it this way instead of adding more complexity to the code. In this new distance test the brush falloff is only applied on the rounded parts of the square to avoid sharp artifacts in the diagonals. Because of this, the round version is much softer than the square one. The planned hardness property will fix this, but this can also be avoided by setting the fallof to a custom curve. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D6165 --- source/blender/blenkernel/intern/colortools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/colortools.c') diff --git a/source/blender/blenkernel/intern/colortools.c b/source/blender/blenkernel/intern/colortools.c index 2ec04ee2747..e2080f04d3a 100644 --- a/source/blender/blenkernel/intern/colortools.c +++ b/source/blender/blenkernel/intern/colortools.c @@ -391,7 +391,7 @@ void BKE_curvemap_reset(CurveMap *cuma, const rctf *clipr, int preset, int slope cuma->curve[6].y = 0.025f; break; case CURVE_PRESET_BELL: - cuma->curve[0].x = 0; + cuma->curve[0].x = 0.0f; cuma->curve[0].y = 0.025f; cuma->curve[1].x = 0.50f; -- cgit v1.2.3