Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IO_orientation.h « common « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09fcbc7045ca3b621cc46b1e9702fa7585cdc6ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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[];