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
path: root/source
diff options
context:
space:
mode:
authorInes Almeida <britalmeida@gmail.com>2018-03-11 18:29:36 +0300
committerInes Almeida <britalmeida@gmail.com>2018-04-23 01:51:20 +0300
commitad0753218fbd9264ab7afc9eec955d789e860f5c (patch)
tree06f766cc89985d66370685f507480b5f40180730 /source
parentc6144b24f9f047dbdfb7b9e757155e640e2cec2b (diff)
Manipulators: removed unused structure member
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index d2bac12e9c8..7767f12f3a7 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -121,7 +121,8 @@ typedef struct RegionView3D {
/* min/max dot product on twmat xyz axis. */
float tw_axis_min[3], tw_axis_max[3];
float tw_axis_matrix[3][3];
- char _pad[4];
+
+ float gridview;
float viewquat[4]; /* view rotation, must be kept normalized */
float dist; /* distance from 'ofs' along -viewinv[2] vector, where result is negative as is 'ofs' */
@@ -147,10 +148,6 @@ typedef struct RegionView3D {
float lviewquat[4];
short lpersp, lview; /* lpersp can never be set to 'RV3D_CAMOB' */
- float gridview;
- float tw_idot[3]; /* manipulator runtime: (1 - dot) product with view vector (used to check view alignment) */
-
-
/* active rotation from NDOF or elsewhere */
float rot_angle;
float rot_axis[3];