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 <campbell@blender.org>2022-02-04 08:06:15 +0300
committerCampbell Barton <campbell@blender.org>2022-02-04 08:07:24 +0300
commit5a4eadc2e7cd607c83f7039609d8a27495efb20a (patch)
tree97f54ae70c8bd3bf2a92f3b7ccfb8ddfbc8404a2 /source/blender/editors/space_view3d/view3d_navigate_ndof.c
parent39a1b51efd4e4e163265fdfe69929c7573b57aa3 (diff)
Cleanup: spelling in comments
Also update viewport comments.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_navigate_ndof.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_navigate_ndof.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_navigate_ndof.c b/source/blender/editors/space_view3d/view3d_navigate_ndof.c
index bf9be56fd09..69394b36e54 100644
--- a/source/blender/editors/space_view3d/view3d_navigate_ndof.c
+++ b/source/blender/editors/space_view3d/view3d_navigate_ndof.c
@@ -205,7 +205,7 @@ static void view3d_ndof_orbit(const struct wmNDOFMotionData *ndof,
/* Perform the orbital rotation */
angle = ndof->dt * rot[1];
- /* update the onscreen doo-dad */
+ /* Update the onscreen axis-angle indicator. */
rv3d->rot_angle = angle;
rv3d->rot_axis[0] = 0;
rv3d->rot_axis[1] = 0;
@@ -222,7 +222,7 @@ static void view3d_ndof_orbit(const struct wmNDOFMotionData *ndof,
/* transform rotation axis from view to world coordinates */
mul_qt_v3(view_inv, axis);
- /* update the onscreen doo-dad */
+ /* Update the onscreen axis-angle indicator. */
rv3d->rot_angle = angle;
copy_v3_v3(rv3d->rot_axis, axis);
@@ -251,7 +251,7 @@ void view3d_ndof_fly(const wmNDOFMotionData *ndof,
float view_inv[4];
invert_qt_qt_normalized(view_inv, rv3d->viewquat);
- rv3d->rot_angle = 0.0f; /* disable onscreen rotation doo-dad */
+ rv3d->rot_angle = 0.0f; /* Disable onscreen rotation indicator. */
if (has_translate) {
/* ignore real 'dist' since fly has its own speed settings,