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:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-02-15 17:26:33 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-06 17:04:31 +0300
commit347a4956a0f4c12f8bcaa789f0574bada3e4db63 (patch)
tree6d76916cfa11d554a1b34928e858cb32784857aa /source/blender/alembic
parentc0ec0a19da523e4f09c38076f6b1831e927e36a7 (diff)
Alembic: added some clarification
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_util.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_util.cc b/source/blender/alembic/intern/abc_util.cc
index aa95180dfe2..f51e15fd25a 100644
--- a/source/blender/alembic/intern/abc_util.cc
+++ b/source/blender/alembic/intern/abc_util.cc
@@ -163,7 +163,10 @@ static void create_rotation_matrix(
}
/* Recompute transform matrix of object in new coordinate system
- * (from Y-Up to Z-Up). */
+ * (from Y-Up to Z-Up).
+ *
+ * Note that r_mat is used as both input and output parameter.
+ */
void create_transform_matrix(float r_mat[4][4])
{
float rot_mat[3][3], rot[3][3], scale_mat[4][4], invmat[4][4], transform_mat[4][4];