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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-12-09 14:10:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-09 14:10:02 +0400
commit2a79b350e8543d25d71e0c55fae2ec3805a85c9e (patch)
tree71c7884095f6fc32b13e16e4cbd27f0f9b7a83cd /io_anim_nuke_chan
parent0660cc9242717d4ac1578529c607a513d431d962 (diff)
reduce stl docstrings and keep chan exporter pep8 (remove minor warnings at least)
Diffstat (limited to 'io_anim_nuke_chan')
-rw-r--r--io_anim_nuke_chan/import_nuke_chan.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/io_anim_nuke_chan/import_nuke_chan.py b/io_anim_nuke_chan/import_nuke_chan.py
index 48103e09..aa534a97 100644
--- a/io_anim_nuke_chan/import_nuke_chan.py
+++ b/io_anim_nuke_chan/import_nuke_chan.py
@@ -59,9 +59,9 @@ def read_chan(context, filepath, z_up, rot_ord, sensor_width, sensor_height):
translation_mat = Matrix.Translation(v_transl)
translation_mat.to_4x4()
- # read the rotations, and set the rotation order basing on the order
- # set during the export (it's not being saved in the chan file
- # you have to keep it noted somewhere
+ # read the rotations, and set the rotation order basing on the
+ # order set during the export (it's not being saved in the chan
+ # file you have to keep it noted somewhere
# the actual objects rotation order doesn't matter since the
# rotations are being extracted from the matrix afterwards
e_rot = Euler((radians(float(data[4])),
@@ -100,7 +100,6 @@ def read_chan(context, filepath, z_up, rot_ord, sensor_width, sensor_height):
obj.rotation_euler = trns[1].to_euler(obj.rotation_mode)
obj.keyframe_insert("rotation_euler")
-
# check if the object is camera and fov data is present
if camera and len(data) > 7:
camera.sensor_fit = 'HORIZONTAL'