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:
authorCampbell Barton <ideasman42@gmail.com>2018-01-16 03:40:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-16 03:40:43 +0300
commite428ea3e0055dd95445694a72ff5c6b491a46ec7 (patch)
tree812d92e608a7802766edb53774a456b5eae64829 /source/blender/collada
parent6f45dea6eeb32b55d422e4dce33ae9b1521871b1 (diff)
Cleanup: indentation
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/AnimationImporter.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/collada/AnimationImporter.cpp b/source/blender/collada/AnimationImporter.cpp
index bd47ee0214d..fec8d62933a 100644
--- a/source/blender/collada/AnimationImporter.cpp
+++ b/source/blender/collada/AnimationImporter.cpp
@@ -816,10 +816,11 @@ void AnimationImporter::apply_matrix_curves(Object *ob, std::vector<FCurve *>& a
float rot[4], loc[3], scale[3];
mat4_to_quat(rot, mat);
- /*for ( int i = 0 ; i < 4 ; i ++ )
- {
- rot[i] = RAD2DEGF(rot[i]);
- }*/
+#if 0
+ for (int i = 0 ; i < 4; i++) {
+ rot[i] = RAD2DEGF(rot[i]);
+ }
+#endif
copy_v3_v3(loc, mat[3]);
mat4_to_size(scale, mat);