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:
authorGaia Clary <gaia.clary@machinimatrix.org>2019-05-28 01:32:53 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-06-03 00:00:56 +0300
commit692edf430110f15d7356e20ef9efc41596417199 (patch)
tree1374d321de927276380d881e66ce4cbaebb568aa /source/blender/collada/BlenderTypes.h
parent345304058f3f49f71e06aa241bedec41ef537b5b (diff)
refactor collada: Moved BCMatrix to its own file
Diffstat (limited to 'source/blender/collada/BlenderTypes.h')
-rw-r--r--source/blender/collada/BlenderTypes.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/collada/BlenderTypes.h b/source/blender/collada/BlenderTypes.h
index 5eca74219dc..2b0a479fa07 100644
--- a/source/blender/collada/BlenderTypes.h
+++ b/source/blender/collada/BlenderTypes.h
@@ -14,6 +14,13 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+/** \file
+ * \ingroup collada
+ */
+
+#ifndef __BLENDERTYPES_H__
+#define __BLENDERTYPES_H__
+
typedef float(Vector)[3];
typedef float(Matrix)[4][4];
typedef double(DMatrix)[4][4];
@@ -35,3 +42,5 @@ typedef enum BC_global_up_axis {
BC_GLOBAL_UP_MINUS_Y = 4,
BC_GLOBAL_UP_MINUS_Z = 5
} BC_global_up_axis;
+
+#endif