This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenkernel
Ton Roosendaal 09cf0fa6f3 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!
2012-11-01 13:00:24 +00:00
..
2012-09-26 20:05:38 +00:00
2012-05-16 23:37:23 +00:00
2012-06-06 22:38:39 +00:00
2012-10-30 11:40:36 +00:00
2012-03-02 16:05:54 +00:00
2012-09-26 20:05:38 +00:00
2012-10-20 08:02:18 +00:00
2012-10-12 14:35:10 +00:00
2012-06-06 22:38:39 +00:00
2012-05-29 10:21:07 +00:00