Blender Git Commit Log
Git Commits -> Revision 09cf0fa
Revision 09cf0fa by Ton Roosendaal (master) November 1, 2012, 13:00 (GMT) |
Bugreport - Christian Krupa in irc: Curves behaved totally bad suddenly. Caused by Campbell code cleanup, replacing this: /* this is for float inaccuracy */ if (t < knots[0]) t = knots[0]; else if (t > knots[opp2]) t = knots[opp2]; with: t = (t < knots[0]) ? knots[0] : knots[opp2]; Tss! |
Commit Details:
Full Hash: 09cf0fa6f31e246a881dbfe230564debdd8bf7d9
SVN Revision: 51806
Parent Commit: 4fc1a3c
Lines Changed: +4, -1
1 Modified Path:
/source/blender/blenkernel/intern/curve.c (+4, -1) (Diff)