Revert fix for T38594, caused T40186 (just accept limitation for now)

This commit is contained in:
Campbell Barton 2014-05-27 21:28:42 +10:00
parent 4893780d9f
commit bc9e66f083

@ -3079,16 +3079,13 @@ static void calchandleNurb_intern(BezTriple *bezt, BezTriple *prev, BezTriple *n
return;
}
if (is_fcurve == false) {
len_a = len_v3v3(p2, p2_h1);
len_b = len_v3v3(p2, p2_h2);
len_a = len_v3v3(p2, p2_h1);
len_b = len_v3v3(p2, p2_h2);
if (len_a == 0.0f)
len_a = 1.0f;
if (len_b == 0.0f)
len_b = 1.0f;
len_ratio = len_a / len_b;
}
if (len_a == 0.0f) len_a = 1.0f;
if (len_b == 0.0f) len_b = 1.0f;
len_ratio = len_a / len_b;
if (bezt->f1 & SELECT) { /* order of calculation */
if (ELEM(bezt->h2, HD_ALIGN, HD_ALIGN_DOUBLESIDE)) { /* aligned */