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-03 08:21:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-03 08:21:06 +0300
commit7840c593b83e895b44053efb51c0bde2eda6cbb8 (patch)
tree99931d55fe25879825a572823f1b434447802b01
parent51aba69b89372f13ace4a278d9a23999dfd755d9 (diff)
Cleanup: remove axis bounds ifdef
This was added for scale-cage manipulator, but seems generally useful.
-rw-r--r--source/blender/editors/include/ED_transform.h5
-rw-r--r--source/blender/editors/transform/transform_manipulator.c8
2 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h
index a974b6cfe9e..601315e6124 100644
--- a/source/blender/editors/include/ED_transform.h
+++ b/source/blender/editors/include/ED_transform.h
@@ -194,18 +194,13 @@ bool snapNodesTransform(
/* return args */
float r_loc[2], float *r_dist_px, char *r_node_border);
-
-#define USE_AXIS_BOUNDS
-
struct TransformBounds {
float center[3]; /* Center for transform widget. */
float min[3], max[3]; /* Boundbox of selection for transform widget. */
-#ifdef USE_AXIS_BOUNDS
/* Normalized axis */
float axis[3][3];
float axis_min[3], axis_max[3];
-#endif
};
int ED_transform_calc_manipulator_stats(
diff --git a/source/blender/editors/transform/transform_manipulator.c b/source/blender/editors/transform/transform_manipulator.c
index 6fe44d22114..c223ff03525 100644
--- a/source/blender/editors/transform/transform_manipulator.c
+++ b/source/blender/editors/transform/transform_manipulator.c
@@ -435,13 +435,11 @@ static void calc_tw_center(struct TransformBounds *tbounds, const float co[3])
minmax_v3v3_v3(tbounds->min, tbounds->max, co);
add_v3_v3(tbounds->center, co);
-#ifdef USE_AXIS_BOUNDS
for (int i = 0; i < 3; i++) {
const float d = dot_v3v3(tbounds->axis[i], co);
tbounds->axis_min[i] = min_ff(d, tbounds->axis_min[i]);
tbounds->axis_max[i] = max_ff(d, tbounds->axis_max[i]);
}
-#endif
}
static void protectflag_to_drawflags(short protectflag, short *drawflags)
@@ -609,11 +607,9 @@ int ED_transform_calc_manipulator_stats(
/* transform widget matrix */
unit_m4(rv3d->twmat);
-#ifdef USE_AXIS_BOUNDS
unit_m3(rv3d->tw_axis_matrix);
zero_v3(rv3d->tw_axis_min);
zero_v3(rv3d->tw_axis_max);
-#endif
rv3d->twdrawflag = 0xFFFF;
@@ -693,7 +689,6 @@ int ED_transform_calc_manipulator_stats(
INIT_MINMAX(tbounds->min, tbounds->max);
zero_v3(tbounds->center);
-#ifdef USE_AXIS_BOUNDS
copy_m3_m4(tbounds->axis, rv3d->twmat);
if (ob && ob->mode & OB_MODE_EDIT) {
float diff_mat[3][3];
@@ -708,7 +703,6 @@ int ED_transform_calc_manipulator_stats(
tbounds->axis_min[i] = +FLT_MAX;
tbounds->axis_max[i] = -FLT_MAX;
}
-#endif
if (is_gp_edit) {
float diff_mat[4][4];
@@ -1044,11 +1038,9 @@ int ED_transform_calc_manipulator_stats(
unit_m4(rv3d->twmat);
}
else {
-#ifdef USE_AXIS_BOUNDS
copy_v3_v3(rv3d->tw_axis_min, tbounds->axis_min);
copy_v3_v3(rv3d->tw_axis_max, tbounds->axis_max);
copy_m3_m3(rv3d->tw_axis_matrix, tbounds->axis);
-#endif
}
return totsel;