[gegl] spiral: fix indentation



commit f9cd9f68855cc825a531be7680d3ab9c106c7619
Author: Ell <ell_se yahoo com>
Date:   Mon Apr 24 07:41:36 2017 -0400

    spiral: fix indentation
    
    Argh :P

 operations/workshop/spiral.c |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/operations/workshop/spiral.c b/operations/workshop/spiral.c
index 2b86c96..0805013 100644
--- a/operations/workshop/spiral.c
+++ b/operations/workshop/spiral.c
@@ -149,19 +149,19 @@ process (GeglOperation       *operation,
   GeglProperties      *o         = GEGL_PROPERTIES (operation);
   const Babl          *format    = babl_format ("R'G'B'A float");
   gfloat              *dest      = out_buf;
-  gfloat              scale     = 1.0 / (1 << level);
-  gfloat              radius    = scale * o->radius;
-  gfloat              thickness = (1.0 - o->balance) / 2.0;
-  gfloat              angle     = o->rotation / 360.0;
-  gboolean            clockwise = o->direction == GEGL_SPIRAL_DIRECTION_CLOCKWISE;
-  gfloat              lim;
-  gfloat              color1[4];
-  gfloat              color2[4];
-  gfloat              x0;
-  gfloat              x;
-  gfloat              y;
-  gint                i;
-  gint                j;
+  gfloat               scale     = 1.0 / (1 << level);
+  gfloat               radius    = scale * o->radius;
+  gfloat               thickness = (1.0 - o->balance) / 2.0;
+  gfloat               angle     = o->rotation / 360.0;
+  gboolean             clockwise = o->direction == GEGL_SPIRAL_DIRECTION_CLOCKWISE;
+  gfloat               lim;
+  gfloat               color1[4];
+  gfloat               color2[4];
+  gfloat               x0;
+  gfloat               x;
+  gfloat               y;
+  gint                 i;
+  gint                 j;
 
   if (thickness <= 0.5)
     {


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