File tree 7 files changed +2805
-0
lines changed
python/mmSolver/tools/mltools
7 files changed +2805
-0
lines changed Original file line number Diff line number Diff line change 742
742
" import mmSolver.tools.calibratecamera.tool as tool;" ,
743
743
" tool.update();"
744
744
]
745
+ },
746
+ "ml_convert_rotation_order" : {
747
+ "name" : " Convert Rotation Order UI" ,
748
+ "tooltip" : " Change the rotation order of an object while preserving animation." ,
749
+ "command" : [
750
+ " import mmSolver.tools.mltools.ml_convertRotationOrder as ml_convertRotationOrder;" ,
751
+ " ml_convertRotationOrder.ui();"
752
+ ]
745
753
}
746
754
}
747
755
}
Original file line number Diff line number Diff line change 73
73
" general_tools/---Controllers" ,
74
74
" general_tools/create_controller2" ,
75
75
" general_tools/remove_controller2" ,
76
+ " general_tools/---ML Tools" ,
77
+ " general_tools/ml_convert_rotation_order" ,
76
78
" general_tools/---Settings & Preferences" ,
77
79
" general_tools/user_preferences_window" ,
78
80
" file_io_tools/---Input Output" ,
Original file line number Diff line number Diff line change 74
74
" general_tools/gen_tools_popup/---Controllers" ,
75
75
" general_tools/gen_tools_popup/create_controller2" ,
76
76
" general_tools/gen_tools_popup/remove_controller2" ,
77
+ " general_tools/gen_tools_popup/---ML Tools" ,
78
+ " general_tools/gen_tools_popup/ml_convert_rotation_order" ,
77
79
" general_tools/gen_tools_popup/---Settings & Preferences" ,
78
80
" general_tools/gen_tools_popup/user_preferences_window" ,
79
81
" file_io_tools/file_io_popup/---Input Output" ,
Original file line number Diff line number Diff line change 71
71
" general_tools/gen_tools_popup/---Controllers" ,
72
72
" general_tools/gen_tools_popup/create_controller2" ,
73
73
" general_tools/gen_tools_popup/remove_controller2" ,
74
+ " general_tools/gen_tools_popup/---ML Tools" ,
75
+ " general_tools/gen_tools_popup/ml_convert_rotation_order" ,
74
76
" general_tools/gen_tools_popup/---Settings & Preferences" ,
75
77
" general_tools/gen_tools_popup/user_preferences_window" ,
76
78
" file_io_tools/file_io_popup/---Input Output" ,
Original file line number Diff line number Diff line change
1
+ # Copyright (C) 2019, 2021 David Cattermole.
2
+ #
3
+ # This file is part of mmSolver.
4
+ #
5
+ # mmSolver is free software: you can redistribute it and/or modify it
6
+ # under the terms of the GNU Lesser General Public License as
7
+ # published by the Free Software Foundation, either version 3 of the
8
+ # License, or (at your option) any later version.
9
+ #
10
+ # mmSolver is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public License
16
+ # along with mmSolver. If not, see <https://www.gnu.org/licenses/>.
17
+ #
18
+ """
19
+ These are direct ports for Morgan Loomis's Animation tools so that they
20
+ can be utilized within mmSolver.
21
+
22
+ Morgan Loomis's tools are under the MIT License making them compatible
23
+ with mmSolver's GNU Lesser General Public License.
24
+
25
+ The original files can be found here:
26
+ http://morganloomis.com/
27
+ """
You can’t perform that action at this time.
0 commit comments