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>2014-09-06 05:19:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-06 05:29:27 +0400
commit671f75a12a1d9e57d9f609148538bcb9cf8b3a46 (patch)
treeb410028251edc29477105515f122d0aa1ffacbb1 /source/blender/blenlib/BLI_math_matrix.h
parent7971e441c15b5740ac2e09f898e24011b88f51a5 (diff)
Math Lib: Add copy_m2_m2, unit_m2, zero_m2
Diffstat (limited to 'source/blender/blenlib/BLI_math_matrix.h')
-rw-r--r--source/blender/blenlib/BLI_math_matrix.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_matrix.h b/source/blender/blenlib/BLI_math_matrix.h
index 7bcaab1f939..0eac92c1db9 100644
--- a/source/blender/blenlib/BLI_math_matrix.h
+++ b/source/blender/blenlib/BLI_math_matrix.h
@@ -38,12 +38,15 @@ extern "C" {
/********************************* Init **************************************/
+void zero_m2(float R[2][2]);
void zero_m3(float R[3][3]);
void zero_m4(float R[4][4]);
+void unit_m2(float R[2][2]);
void unit_m3(float R[3][3]);
void unit_m4(float R[4][4]);
+void copy_m2_m2(float R[2][2], float A[2][2]);
void copy_m3_m3(float R[3][3], float A[3][3]);
void copy_m4_m4(float R[4][4], float A[4][4]);
void copy_m3_m4(float R[3][3], float A[4][4]);