Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2012-11-01 17:00:24 +0400
committerTon Roosendaal <ton@blender.org>2012-11-01 17:00:24 +0400
commit09cf0fa6f31e246a881dbfe230564debdd8bf7d9 (patch)
tree548e56a2558a9124296a7a902a28a14d21418ce9 /source/blender/collada/GeometryExporter.cpp
parent4fc1a3c8b392d7819e89e0aafc1ecef558a37d4a (diff)
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!
Diffstat (limited to 'source/blender/collada/GeometryExporter.cpp')
0 files changed, 0 insertions, 0 deletions