mirror of https://github.com/GNOME/gimp.git
formatting.
2008-03-10 Sven Neumann <sven@gimp.org> * app/paint/gimpink.c (gimp_ink_motion): formatting. svn path=/trunk/; revision=25081
This commit is contained in:
parent
cffce40876
commit
aec9ef264e
|
@ -1,3 +1,7 @@
|
|||
2008-03-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/paint/gimpink.c (gimp_ink_motion): formatting.
|
||||
|
||||
2008-03-10 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/vectors/gimpanchor.c (gimp_anchor_copy): use g_slice_dup()
|
||||
|
|
|
@ -267,16 +267,16 @@ gimp_ink_motion (GimpPaintCore *paint_core,
|
|||
}
|
||||
else
|
||||
{
|
||||
Blob *blob;
|
||||
blob = ink_pen_ellipse (options,
|
||||
paint_core->cur_coords.x,
|
||||
paint_core->cur_coords.y,
|
||||
paint_core->cur_coords.pressure,
|
||||
paint_core->cur_coords.xtilt,
|
||||
paint_core->cur_coords.ytilt,
|
||||
paint_core->cur_coords.velocity * 100);
|
||||
Blob *blob = ink_pen_ellipse (options,
|
||||
paint_core->cur_coords.x,
|
||||
paint_core->cur_coords.y,
|
||||
paint_core->cur_coords.pressure,
|
||||
paint_core->cur_coords.xtilt,
|
||||
paint_core->cur_coords.ytilt,
|
||||
paint_core->cur_coords.velocity * 100);
|
||||
|
||||
blob_union = blob_convex_union (ink->last_blob, blob);
|
||||
|
||||
g_free (ink->last_blob);
|
||||
ink->last_blob = blob;
|
||||
|
||||
|
|
Loading…
Reference in New Issue