formatting.
2008-07-17 Sven Neumann <sven@gimp.org> * app/core/gimpcoords.c (gimp_coords_mix): formatting. svn path=/trunk/; revision=26229
This commit is contained in:

committed by
Sven Neumann

parent
1acaf94143
commit
154e185df5
@ -1,5 +1,7 @@
|
||||
2008-07-17 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpcoords.c (gimp_coords_mix): formatting.
|
||||
|
||||
* app/vectors/gimpbezierstroke.c: formatting.
|
||||
|
||||
2008-07-17 Sven Neumann <sven@gimp.org>
|
||||
|
@ -44,12 +44,12 @@ gimp_coords_mix (const gdouble amul,
|
||||
{
|
||||
if (b)
|
||||
{
|
||||
ret_val->x = amul * a->x + bmul * b->x ;
|
||||
ret_val->y = amul * a->y + bmul * b->y ;
|
||||
ret_val->pressure = amul * a->pressure + bmul * b->pressure ;
|
||||
ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt ;
|
||||
ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt ;
|
||||
ret_val->wheel = amul * a->wheel + bmul * b->wheel ;
|
||||
ret_val->x = amul * a->x + bmul * b->x;
|
||||
ret_val->y = amul * a->y + bmul * b->y;
|
||||
ret_val->pressure = amul * a->pressure + bmul * b->pressure;
|
||||
ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt;
|
||||
ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt;
|
||||
ret_val->wheel = amul * a->wheel + bmul * b->wheel;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user