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:
authorGermano Cavalcante <mano-wii>2021-09-13 18:41:33 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2021-09-13 18:43:04 +0300
commit4f73d43adc38a54c8b033ca3e91e9d61e927b665 (patch)
treed1cbc8502c8b4eceb4c75e4f841f6806ca8ebf8b /source/blender/blenkernel/intern/curve.c
parenta78410386b05f375b53ed867980234b61c2eba10 (diff)
Fix T90736: Problem applying scale to curves
Curve Points of handle of type `Auto` on curves not uniformly scaled cause the shape of the curve to be modified after applying the scale. So change these handles to `Aligned` in these cases. Reviewed By: campbellbarton Maniphest Tasks: T90736 Differential Revision: https://developer.blender.org/D12281
Diffstat (limited to 'source/blender/blenkernel/intern/curve.c')
-rw-r--r--source/blender/blenkernel/intern/curve.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/curve.c b/source/blender/blenkernel/intern/curve.c
index 397838e6904..f22c3b13efc 100644
--- a/source/blender/blenkernel/intern/curve.c
+++ b/source/blender/blenkernel/intern/curve.c
@@ -5269,6 +5269,8 @@ void BKE_curve_transform_ex(Curve *cu,
BezTriple *bezt;
int i;
+ const bool is_uniform_scaled = is_uniform_scaled_m4(mat);
+
LISTBASE_FOREACH (Nurb *, nu, &cu->nurb) {
if (nu->type == CU_BEZIER) {
i = nu->pntsu;
@@ -5279,6 +5281,11 @@ void BKE_curve_transform_ex(Curve *cu,
if (do_props) {
bezt->radius *= unit_scale;
}
+ if (!is_uniform_scaled) {
+ if (ELEM(bezt->h1, HD_AUTO, HD_AUTO_ANIM) || ELEM(bezt->h2, HD_AUTO, HD_AUTO_ANIM)) {
+ bezt->h1 = bezt->h2 = HD_ALIGN;
+ }
+ }
}
BKE_nurb_handles_calc(nu);
}