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>2010-07-03 21:39:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-03 21:39:29 +0400
commit9a85435e96af9933b282594b6ad8b23ca598d8bc (patch)
treedb9f8adf20ba7dbe91da3a7523388bb9e1ece19d /release/scripts/io/export_ply.py
parent7a495a12e1c367f8f1dbe14586c3798db5982171 (diff)
rna api:
rename object.matrix --> matrix_world added object.matrix_local (parent relative matrix)
Diffstat (limited to 'release/scripts/io/export_ply.py')
-rw-r--r--release/scripts/io/export_ply.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/io/export_ply.py b/release/scripts/io/export_ply.py
index aee56550526..09d25b61010 100644
--- a/release/scripts/io/export_ply.py
+++ b/release/scripts/io/export_ply.py
@@ -111,7 +111,7 @@ def write(filename, scene, ob, \
raise ("Error, could not get mesh data from active object")
return
- # mesh.transform(ob.matrixWorld) # XXX
+ # mesh.transform(ob.matrix_world) # XXX
faceUV = (len(mesh.uv_textures) > 0)
vertexUV = (len(mesh.sticky) > 0)