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>2011-11-15 15:56:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-15 15:56:54 +0400
commit6a340c1eb066192ee98c830a526e85905f320446 (patch)
treed85bb5c0ccbd01a2561aa67eb3f0e85279058ca6 /source/blender/blenkernel/intern/texture.c
parent1a47f9516ec54775d4bab882a4f59585383b3dbe (diff)
py/rna api was calling RNA_property_type more often then needed (no functional change)
Diffstat (limited to 'source/blender/blenkernel/intern/texture.c')
-rw-r--r--source/blender/blenkernel/intern/texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/texture.c b/source/blender/blenkernel/intern/texture.c
index db4d09e38b3..a67a61c7638 100644
--- a/source/blender/blenkernel/intern/texture.c
+++ b/source/blender/blenkernel/intern/texture.c
@@ -252,7 +252,7 @@ void init_tex_mapping(TexMapping *texmap)
size_to_mat3(smat, texmap->size);
/* rotation */
- /* XXX TexMapping rotation are now in radians. */
+ /* TexMapping rotation are now in radians. */
eul_to_mat3(rmat, texmap->rot);
/* compose it all */