Simplify math.

2008-07-05  Martin Nordholts  <martinn@svn.gnome.org>

	* app/tools/gimprectangletool.c: 
	* app/tools/gimpeditselectiontool.c: Simplify math.

svn path=/trunk/; revision=26066
This commit is contained in:
Martin Nordholts 2008-07-05 11:01:20 +00:00 committed by Martin Nordholts
parent 995a944ca8
commit ac19e7deb8
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2008-07-05 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimprectangletool.c:
* app/tools/gimpeditselectiontool.c: Simplify math.
2008-07-05 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimprectangletool.c:

View file

@ -436,8 +436,8 @@ gimp_edit_selection_tool_start (GimpTool *parent_tool,
y2 - y1);
/* Save where to draw the mark of the center */
edit_select->center_x = x1 + (x2 - x1) / 2.0;
edit_select->center_y = y1 + (y2 - y1) / 2.0;
edit_select->center_x = (x1 + x2) / 2.0;
edit_select->center_y = (y1 + y2) / 2.0;
}
gimp_tool_control_activate (GIMP_TOOL (edit_select)->control);

View file

@ -1672,8 +1672,8 @@ gimp_rectangle_tool_draw (GimpDrawTool *draw_tool)
{
/* Mark the center because we snap to it */
gimp_draw_tool_draw_cross_by_anchor (draw_tool,
pub_x1 + (pub_x2 - pub_x1) / 2.0,
pub_y1 + (pub_y2 - pub_y1) / 2.0,
(pub_x1 + pub_x2) / 2.0,
(pub_y1 + pub_y2) / 2.0,
CENTER_CROSS_SIZE,
CENTER_CROSS_SIZE,
GTK_ANCHOR_CENTER,