Revert "Fix T47263: numpad4/6 rotates around worl Z axis and not view Y axis."

This reverts commit fe0ca82b23.

This is a design issue, needs more thinking, for now just revert back to old behavior.
This commit is contained in:
Bastien Montagne 2016-03-25 12:09:59 +01:00
parent a0a7d823e0
commit 7219988258
Notes: blender-bot 2023-02-14 08:17:05 +01:00
Referenced by issue #47263, problem with turntable orbit
1 changed files with 3 additions and 3 deletions

View File

@ -4005,8 +4005,8 @@ static int vieworbit_exec(bContext *C, wmOperator *op)
angle = -angle;
}
/* View Y-axis */
axis_angle_to_quat(quat_mul, rv3d->viewinv[1], angle);
/* z-axis */
axis_angle_to_quat_single(quat_mul, 'Z', angle);
}
else {
@ -4014,7 +4014,7 @@ static int vieworbit_exec(bContext *C, wmOperator *op)
angle = -angle;
}
/* View X-axis */
/* horizontal axis */
axis_angle_to_quat(quat_mul, rv3d->viewinv[0], angle);
}