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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-16Fix T43259: Mocap Tools - Index out of range in "Samples to Beziers"Bastien Montagne
Main issue was that the addon did not handled 'sampled_points' at all. Now it converts such curves back to keyframes ones first. This might not be optimal, but avoids having too different read logic, and we cannot do anything to sampled fcurves from python anyway... Also did some other fixes/enhancements: * Fixed behavior with groups of fcurves when they did not have same keyframes (was giving full crappy results with odd offsets). * In `fitCubic()`, do not call `maxErrorAmount()` twice unless it's really needed. * Use 'fast' remove/insert of keyframes! * Use comprehensions to generate the init points data, saves some code lines and is usually quicker. Note performance gains (though mesurable) are not so fancy, we could probably optimize much more by avoiding to use that custom nD vector class and all (and probably even much much more by using numpy), most of the time being spent inside complex math helpers, but for now it should work as expected at least.
2014-11-10Fix T42476: Mocap addon: "Clean noise" didn't work properly.Bastien Montagne
Patch by sybrenstuvel (Sybren Stüvel), with own tweaking (main issue was, fcurve needs to be updated when you have changed their keyframes), thanks!
2014-10-29Fix T42416: Mocap addon: auto-scale doesn't work.Sybren Stüvel
Also simplified the code. There were a few things that were explicitly coded while there are Python builtins that perform the same operation (and do it faster). Reviewed by mont29 (Bastien Montagne).
2011-11-19indentation edits and copy pyrimid from contrib (where I had made some ↵Campbell Barton
edits), removed so this wont happen again.
2011-09-11pep8 edits & import cleanupCampbell Barton
2011-09-05replace tricky unicode chars for basic ascii.Campbell Barton
2011-08-26use slightly improved py syntaxCampbell Barton
2011-08-26Superficial pep8 editsCampbell Barton
2011-08-24committing Motion Capture Add-on - Final deliverable for GSoC project 2011Brendon Murphy
thanks to Benjy Cook well done!