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-21 18:24:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-21 18:24:14 +0300
commit605e1841676ce44de827d924a9e7f3e8d5f8b3dc (patch)
treefea5b442a3c9c7bc41582a50f9c3d38c91e97c77 /source/blender/editors/transform/transform.h
parent882daeffc5f189e9278f8b6a9f66df77aae0f306 (diff)
Cleanup: use const for transform internal API
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index 6afdc7b208d..b1b1dd36bf0 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -775,7 +775,7 @@ bool calculateCenterActive(TransInfo *t, bool select_only, float r_center[3]);
void calculatePropRatio(TransInfo *t);
-void getViewVector(TransInfo *t, float coord[3], float vec[3]);
+void getViewVector(const TransInfo *t, const float coord[3], float vec[3]);
void transform_data_ext_rotate(TransData *td, float mat[3][3], bool use_drot);