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>2013-10-26 02:12:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-26 02:12:05 +0400
commita304b5a9886634bbb7d8806ddb87bcf2687640a0 (patch)
treed419395c9ab722167b225192149b3945116ec20d /source/blender/blenlib/intern/math_matrix.c
parent2a387436bb526de183972cbe4328252865a92f57 (diff)
correct typo
Diffstat (limited to 'source/blender/blenlib/intern/math_matrix.c')
-rw-r--r--source/blender/blenlib/intern/math_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_matrix.c b/source/blender/blenlib/intern/math_matrix.c
index 2cda4425d8e..1f52caac8e9 100644
--- a/source/blender/blenlib/intern/math_matrix.c
+++ b/source/blender/blenlib/intern/math_matrix.c
@@ -112,7 +112,7 @@ void copy_m4_m3(float m1[4][4], float m2[3][3]) /* no clear */
}
-void copt_m3_m3d(float R[3][3], double A[3][3])
+void copy_m3_m3d(float R[3][3], double A[3][3])
{
/* Keep it stupid simple for better data flow in CPU. */
R[0][0] = A[0][0];