mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
Reposition variable declarations to avoid C99.
This commit is contained in:
parent
94a571ea76
commit
9cf8410b0f
@ -245,9 +245,10 @@ gaussian (float x, float y)
|
||||
/* Center offset */
|
||||
float b = 0.0;
|
||||
|
||||
float dist;
|
||||
x = x - RIPPLE_CENTER_X;
|
||||
y = y - RIPPLE_CENTER_Y;
|
||||
float dist = sqrtf (x*x + y*y);
|
||||
dist = sqrtf (x*x + y*y);
|
||||
|
||||
return a * exp ((- ((dist - b) * (dist - b))) / (2.0 * c * c));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user