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>2018-05-07 22:30:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-07 22:40:51 +0300
commiteefaec41140046c455aa51f22b22fdbdc90e00a6 (patch)
tree31aaca96a22633b012cd93fcc62aa11cf14bb613 /source/blender/editors/include/ED_transform.h
parent170223804bee3ee2a3fe373ac858d36fe2361570 (diff)
Extrude Widget: Add orientation to topbar
Add extrude operator that's intended to work on the current selection and be activated as a tool.
Diffstat (limited to 'source/blender/editors/include/ED_transform.h')
-rw-r--r--source/blender/editors/include/ED_transform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h
index 23cc55a239a..e17d02abcd7 100644
--- a/source/blender/editors/include/ED_transform.h
+++ b/source/blender/editors/include/ED_transform.h
@@ -206,6 +206,8 @@ struct TransformBounds {
struct TransformCalcParams {
uint use_only_center : 1;
uint use_local_axis : 1;
+ /* Use 'Scene.orientation_type' when zero, otherwise subtract one and use. */
+ ushort orientation_type;
};
int ED_transform_calc_manipulator_stats(
const struct bContext *C,