[gimp/wip/gradient-edit: 3/39] app: rename slider-value variables in GimpToolLine



commit 84e88dda5911e40182191ba42b5091c7c621b3a6
Author: Ell <ell_se yahoo com>
Date:   Wed Jul 26 08:18:42 2017 -0400

    app: rename slider-value variables in GimpToolLine
    
    Rename the "t" variables, representing slider values, to "value".

 app/display/gimptoolline.c |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/app/display/gimptoolline.c b/app/display/gimptoolline.c
index 9c01b21..6f9ddaf 100644
--- a/app/display/gimptoolline.c
+++ b/app/display/gimptoolline.c
@@ -437,16 +437,16 @@ gimp_tool_line_changed (GimpToolWidget *widget)
 
   for (i = 0; i < private->sliders->len; i++)
     {
-      gdouble          t;
+      gdouble          value;
       gdouble          x;
       gdouble          y;
       GimpCanvasItem **circle;
       GimpCanvasItem **grip;
 
-      t = gimp_tool_line_get_slider (line, i)->value;
+      value = gimp_tool_line_get_slider (line, i)->value;
 
-      x = private->x1 + (private->x2 - private->x1) * t;
-      y = private->y1 + (private->y2 - private->y1) * t;
+      x = private->x1 + (private->x2 - private->x1) * value;
+      y = private->y1 + (private->y2 - private->y1) * value;
 
       circle = &g_array_index (private->slider_handle_circles,
                                GimpCanvasItem *, i);
@@ -735,24 +735,24 @@ gimp_tool_line_point_motion (GimpToolLine *line,
         if (length_sqr > 0.0)
           {
             GimpControllerSlider *slider;
-            gdouble               t;
+            gdouble               value;
 
             slider = gimp_tool_line_get_slider (line, private->slider_index);
 
             /* project the cursor position onto the line */
-            t  = (private->x2 - private->x1) * (x - private->x1) +
-                 (private->y2 - private->y1) * (y - private->y1);
-            t /= length_sqr;
+            value  = (private->x2 - private->x1) * (x - private->x1) +
+                     (private->y2 - private->y1) * (y - private->y1);
+            value /= length_sqr;
 
             if (constrain)
-              t = RINT (12.0 * t) / 12.0;
+              value = RINT (12.0 * value) / 12.0;
 
-            t = CLAMP (t, slider->min, slider->max);
-            t = CLAMP (t, 0.0, 1.0);
+            value = CLAMP (value, slider->min, slider->max);
+            value = CLAMP (value, 0.0, 1.0);
 
-            t = fabs (t); /* avoid negative zero */
+            value = fabs (value); /* avoid negative zero */
 
-            slider->value = t;
+            slider->value = value;
 
             g_object_set (line,
                           "sliders", private->sliders,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]