Commit: 133c2381ec7829578fb1652d0b6cbfe8bf314249 Author: Hans Goudey Date: Fri May 1 16:49:36 2020 -0500 Branches: blender-v2.83-release https://developer.blender.org/rB133c2381ec7829578fb1652d0b6cbfe8bf314249
Fix T76062: Interpolate Radius in Curve Subdivide Special Case Differential Revision: https://developer.blender.org/D7523 =================================================================== M source/blender/editors/curve/editcurve.c =================================================================== diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 818acd28ecd..d6256f67066 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -3592,6 +3592,7 @@ static void subdividenurb(Object *obedit, View3D *v3d, int number_cuts) memcpy(bpn, nextbp, sizeof(BPoint)); interp_v4_v4v4(bpn->vec, bp->vec, nextbp->vec, factor); + bpn->radius = interpf(bp->radius, nextbp->radius, factor); bpn++; } } _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
