From eececb0d8036bfcf048a3f1e47e8033e21bf86a9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 26 Jul 2016 06:42:24 +1000 Subject: Curve Drawing: use more closely spaced samples Re-fitting makes better use of more samples. --- source/blender/editors/curve/editcurve_paint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/curve') diff --git a/source/blender/editors/curve/editcurve_paint.c b/source/blender/editors/curve/editcurve_paint.c index 4d0a2fa53cd..2d8fc76ee7e 100644 --- a/source/blender/editors/curve/editcurve_paint.c +++ b/source/blender/editors/curve/editcurve_paint.c @@ -64,8 +64,8 @@ #endif /* Distance between input samples */ -#define STROKE_SAMPLE_DIST_MIN_PX 3 -#define STROKE_SAMPLE_DIST_MAX_PX 6 +#define STROKE_SAMPLE_DIST_MIN_PX 1 +#define STROKE_SAMPLE_DIST_MAX_PX 3 /* Distance between start/end points to consider cyclic */ #define STROKE_CYCLIC_DIST_PX 8 -- cgit v1.2.3