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:
Diffstat (limited to 'source/blender/io/common/IO_orientation.h')
-rw-r--r--source/blender/io/common/IO_orientation.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/blender/io/common/IO_orientation.h b/source/blender/io/common/IO_orientation.h
new file mode 100644
index 00000000000..09fcbc7045c
--- /dev/null
+++ b/source/blender/io/common/IO_orientation.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#pragma once
+
+#include "RNA_types.h"
+
+typedef enum {
+ IO_AXIS_X = 0,
+ IO_AXIS_Y = 1,
+ IO_AXIS_Z = 2,
+ IO_AXIS_NEGATIVE_X = 3,
+ IO_AXIS_NEGATIVE_Y = 4,
+ IO_AXIS_NEGATIVE_Z = 5,
+} eIOAxis;
+
+extern const EnumPropertyItem io_transform_axis[];