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:
authorYimingWu <xp8110@outlook.com>2021-09-19 08:01:24 +0300
committerYimingWu <xp8110@outlook.com>2021-09-19 08:01:24 +0300
commit25e548c96b3d8c1698fd4385b4dc395665b5a7f6 (patch)
treebbd3cb431e55eda8145e0aa198b6651928c01686 /source/blender/blenkernel/BKE_gpencil_geom.h
parentbdbc7e12a02e15ad7265dfc1ac21fb6d0016308f (diff)
GPencil: Curvature support for length modifier.
Diffstat (limited to 'source/blender/blenkernel/BKE_gpencil_geom.h')
-rw-r--r--source/blender/blenkernel/BKE_gpencil_geom.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_gpencil_geom.h b/source/blender/blenkernel/BKE_gpencil_geom.h
index d472fd6f02b..20ee9199dba 100644
--- a/source/blender/blenkernel/BKE_gpencil_geom.h
+++ b/source/blender/blenkernel/BKE_gpencil_geom.h
@@ -114,7 +114,12 @@ void BKE_gpencil_dissolve_points(struct bGPdata *gpd,
bool BKE_gpencil_stroke_stretch(struct bGPDstroke *gps,
const float dist,
const float overshoot_fac,
- const short mode);
+ const short mode,
+ const bool follow_curvature,
+ const int extra_point_count,
+ const float edge_point_tradeoff,
+ const float max_angle,
+ const bool invert_curvature);
bool BKE_gpencil_stroke_trim_points(struct bGPDstroke *gps,
const int index_from,
const int index_to);