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>2015-07-13 21:27:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-13 21:30:16 +0300
commit406b9aa7b1ead0ff2757a463bc7efe9fdcee5fbe (patch)
tree70272b7c803598d5875f711db6c1ddbdfc019477 /source/blender/editors/transform/transform.h
parent6f7926c61c94ea9bd2969ebfcc7e09994ffe901d (diff)
Fix T45402: Transform crash w/ project+align snap
Only euler rotations were checked for. Also delta rotations caused random/unusable output.
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index b826b7f9c73..815b07f3cd5 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -711,6 +711,8 @@ void calculatePropRatio(TransInfo *t);
void getViewVector(TransInfo *t, float coord[3], float vec[3]);
+void transform_data_ext_rotate(TransData *td, float mat[3][3], bool use_drot);
+
/*********************** Transform Orientations ******************************/
void initTransformOrientation(struct bContext *C, TransInfo *t);