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
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-11-01 09:54:00 +00:00
2012-11-01 09:54:00 +00:00
2012-10-29 02:11:40 +00:00
2012-11-01 09:54:00 +00:00
2012-10-23 13:28:22 +00:00
2012-11-01 09:54:00 +00:00
2012-11-01 09:54:00 +00:00
2012-10-29 02:11:40 +00:00
2012-10-30 12:18:45 +00:00
2012-06-30 22:44:36 +00:00