├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .buildinfo ├── .nojekyll ├── _images │ ├── keyframeReductionExample.gif │ └── keyframeReductionUI.png ├── _sources │ ├── index.rst.txt │ ├── keyframeReduction.classes.fit.rst.txt │ ├── keyframeReduction.classes.keyframe.rst.txt │ ├── keyframeReduction.classes.keyframeReduction.rst.txt │ ├── keyframeReduction.classes.rst.txt │ ├── keyframeReduction.classes.vector.rst.txt │ ├── keyframeReduction.install.rst.txt │ ├── keyframeReduction.rst.txt │ ├── keyframeReduction.ui.rst.txt │ ├── keyframeReduction.utils.rst.txt │ └── modules.rst.txt ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── classic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-3.1.0.js │ ├── jquery.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sidebar.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── genindex.html ├── index.html ├── keyframeReduction.classes.fit.html ├── keyframeReduction.classes.html ├── keyframeReduction.classes.keyframe.html ├── keyframeReduction.classes.keyframeReduction.html ├── keyframeReduction.classes.vector.html ├── keyframeReduction.html ├── keyframeReduction.install.html ├── keyframeReduction.ui.html ├── keyframeReduction.utils.html ├── modules.html ├── objects.inv ├── py-modindex.html ├── search.html └── searchindex.js ├── icons └── KR_icon.png ├── keyframeReduction.mel ├── keyframeReduction.mod └── scripts ├── keyframeReduction ├── __init__.py ├── classes │ ├── __init__.py │ ├── fit.py │ ├── keyframe.py │ ├── keyframeReduction.py │ └── vector.py ├── install.py ├── ui.py └── utils.py └── userSetup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.py[cod] 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/README.md -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_images/keyframeReductionExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_images/keyframeReductionExample.gif -------------------------------------------------------------------------------- /docs/_images/keyframeReductionUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_images/keyframeReductionUI.png -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.classes.fit.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.classes.fit.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.classes.keyframe.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.classes.keyframe.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.classes.keyframeReduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.classes.keyframeReduction.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.classes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.classes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.classes.vector.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.classes.vector.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.install.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.ui.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.ui.rst.txt -------------------------------------------------------------------------------- /docs/_sources/keyframeReduction.utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/keyframeReduction.utils.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/keyframeReduction.classes.fit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.classes.fit.html -------------------------------------------------------------------------------- /docs/keyframeReduction.classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.classes.html -------------------------------------------------------------------------------- /docs/keyframeReduction.classes.keyframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.classes.keyframe.html -------------------------------------------------------------------------------- /docs/keyframeReduction.classes.keyframeReduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.classes.keyframeReduction.html -------------------------------------------------------------------------------- /docs/keyframeReduction.classes.vector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.classes.vector.html -------------------------------------------------------------------------------- /docs/keyframeReduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.html -------------------------------------------------------------------------------- /docs/keyframeReduction.install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.install.html -------------------------------------------------------------------------------- /docs/keyframeReduction.ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.ui.html -------------------------------------------------------------------------------- /docs/keyframeReduction.utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/keyframeReduction.utils.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /icons/KR_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/icons/KR_icon.png -------------------------------------------------------------------------------- /keyframeReduction.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/keyframeReduction.mel -------------------------------------------------------------------------------- /keyframeReduction.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/keyframeReduction.mod -------------------------------------------------------------------------------- /scripts/keyframeReduction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/__init__.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/keyframeReduction/classes/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/classes/fit.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/classes/keyframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/classes/keyframe.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/classes/keyframeReduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/classes/keyframeReduction.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/classes/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/classes/vector.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/install.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/ui.py -------------------------------------------------------------------------------- /scripts/keyframeReduction/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/keyframeReduction/utils.py -------------------------------------------------------------------------------- /scripts/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-keyframe-reduction/HEAD/scripts/userSetup.py --------------------------------------------------------------------------------