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:
authorJoshua Leung <aligorith@gmail.com>2011-03-25 06:58:21 +0300
committerJoshua Leung <aligorith@gmail.com>2011-03-25 06:58:21 +0300
commit16e736b7db3ef3597e22f55e7b26416ee562a418 (patch)
tree7b4d0980e6c33c35aea5b375718add6f84dbb74e /release/scripts/startup/bl_operators/__init__.py
parent0c03fa78c10f04283512f2a5a4557d86c72d6f29 (diff)
Graph Editor: Euler Filter ported from Py to C
Ported joeedh's Euler Filter code from Python to C so that this is more in line with the other Graph Editor tools - i.e. joeedh's version only worked on the active bone's curves, while standard tools could work with multiple bones/objects at the same time. To use this new version of this operator: 1) Select all the F-Curves for all 3 of the components (XYZ) for the euler rotations you wish to clean up. In the Graph Editor, they must be one after the other (i.e. you can't have "RotX, RotY, something else, RotZ") 2) Activate the operator from the Key menu in the Graph Editor In an old test file I have floating around, this method did not appear to be good enough to fix a very clear discontinuity in the middle of the action, so I'll test some additional methods too
Diffstat (limited to 'release/scripts/startup/bl_operators/__init__.py')
-rw-r--r--release/scripts/startup/bl_operators/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/__init__.py b/release/scripts/startup/bl_operators/__init__.py
index 599cd6c1889..2a42cfbacb8 100644
--- a/release/scripts/startup/bl_operators/__init__.py
+++ b/release/scripts/startup/bl_operators/__init__.py
@@ -25,7 +25,6 @@ if "bpy" in locals():
_modules = (
"add_mesh_torus",
"animsys_update",
- "fcurve_euler_filter",
"image",
"mesh",
"nla",