2003-10-19 17:44:46 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2007-06-06 16:44:52 +08:00
|
|
|
* This is a plug-in for GIMP.
|
2003-10-19 17:44:46 +08:00
|
|
|
*
|
|
|
|
* Generates images containing vector type drawings.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1997 Andy Thomas alt@picnic.demon.co.uk
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
2004-10-27 14:43:52 +08:00
|
|
|
*
|
2003-10-19 17:44:46 +08:00
|
|
|
*/
|
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-10-19 17:44:46 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
|
|
|
|
|
|
|
#include "gfig.h"
|
2004-11-30 07:02:39 +08:00
|
|
|
#include "gfig-line.h"
|
2004-07-08 01:52:16 +08:00
|
|
|
#include "gfig-dobject.h"
|
2006-10-31 05:36:08 +08:00
|
|
|
#include "gfig-star.h"
|
2004-10-28 02:47:08 +08:00
|
|
|
#include "gfig-dialog.h"
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
|
|
|
static gint star_num_sides = 3; /* Default to three sided object */
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2004-12-05 01:33:54 +08:00
|
|
|
static void d_draw_star (GfigObject *obj);
|
|
|
|
static void d_paint_star (GfigObject *obj);
|
|
|
|
static GfigObject *d_copy_star (GfigObject *obj);
|
|
|
|
|
|
|
|
static void d_update_star (GdkPoint *pnt);
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2004-10-28 02:47:08 +08:00
|
|
|
void
|
2004-11-12 09:54:02 +08:00
|
|
|
tool_options_star (GtkWidget *notebook)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-10-28 02:47:08 +08:00
|
|
|
GtkWidget *sides;
|
|
|
|
|
|
|
|
sides = num_sides_widget (_("Star Number of Points"),
|
|
|
|
&star_num_sides, NULL, 3, 200);
|
2004-11-12 09:54:02 +08:00
|
|
|
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), sides, NULL);
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-11-16 22:10:20 +08:00
|
|
|
d_draw_star (GfigObject *obj)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-10-30 23:25:07 +08:00
|
|
|
DobjPoints *center_pnt;
|
|
|
|
DobjPoints *outer_radius_pnt;
|
|
|
|
DobjPoints *inner_radius_pnt;
|
|
|
|
gint16 shift_x;
|
|
|
|
gint16 shift_y;
|
|
|
|
gdouble ang_grid;
|
|
|
|
gdouble ang_loop;
|
|
|
|
gdouble outer_radius;
|
|
|
|
gdouble inner_radius;
|
|
|
|
gdouble offset_angle;
|
|
|
|
gint loop;
|
2005-12-31 01:50:19 +08:00
|
|
|
GdkPoint start_pnt = { 0, 0 };
|
|
|
|
GdkPoint first_pnt = { 0, 0 };
|
2004-10-30 23:25:07 +08:00
|
|
|
gboolean do_line = FALSE;
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
center_pnt = obj->points;
|
|
|
|
|
|
|
|
if (!center_pnt)
|
|
|
|
return; /* End-of-line */
|
|
|
|
|
|
|
|
/* First point is the center */
|
|
|
|
/* Just draw a control point around it */
|
|
|
|
|
2004-11-22 03:50:18 +08:00
|
|
|
draw_sqr (¢er_pnt->pnt, obj == gfig_context->selected_obj);
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
/* Next point defines the radius */
|
2003-10-24 21:28:46 +08:00
|
|
|
outer_radius_pnt = center_pnt->next; /* this defines the vertices */
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
if (!outer_radius_pnt)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
g_warning ("Internal error in star - no outer vertice point \n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
inner_radius_pnt = outer_radius_pnt->next; /* this defines the vertices */
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
if (!inner_radius_pnt)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
g_warning ("Internal error in star - no inner vertice point \n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Other control points */
|
2004-11-22 03:50:18 +08:00
|
|
|
draw_sqr (&outer_radius_pnt->pnt, obj == gfig_context->selected_obj);
|
|
|
|
draw_sqr (&inner_radius_pnt->pnt, obj == gfig_context->selected_obj);
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
/* Have center and radius - draw star */
|
|
|
|
|
|
|
|
shift_x = outer_radius_pnt->pnt.x - center_pnt->pnt.x;
|
|
|
|
shift_y = outer_radius_pnt->pnt.y - center_pnt->pnt.y;
|
|
|
|
|
|
|
|
outer_radius = sqrt ((shift_x*shift_x) + (shift_y*shift_y));
|
|
|
|
|
|
|
|
/* Lines */
|
2004-10-30 23:25:07 +08:00
|
|
|
ang_grid = 2.0 * G_PI / (2.0 * (gdouble) obj->type_data);
|
2003-10-19 17:44:46 +08:00
|
|
|
offset_angle = atan2 (shift_y, shift_x);
|
|
|
|
|
|
|
|
shift_x = inner_radius_pnt->pnt.x - center_pnt->pnt.x;
|
|
|
|
shift_y = inner_radius_pnt->pnt.y - center_pnt->pnt.y;
|
|
|
|
|
|
|
|
inner_radius = sqrt ((shift_x*shift_x) + (shift_y*shift_y));
|
|
|
|
|
|
|
|
for (loop = 0 ; loop < 2 * obj->type_data ; loop++)
|
|
|
|
{
|
|
|
|
gdouble lx, ly;
|
|
|
|
GdkPoint calc_pnt;
|
|
|
|
|
|
|
|
ang_loop = (gdouble)loop * ang_grid + offset_angle;
|
2004-10-27 14:43:52 +08:00
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
if (loop % 2)
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
lx = inner_radius * cos (ang_loop);
|
|
|
|
ly = inner_radius * sin (ang_loop);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
else
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
lx = outer_radius * cos (ang_loop);
|
|
|
|
ly = outer_radius * sin (ang_loop);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
calc_pnt.x = RINT (lx + center_pnt->pnt.x);
|
|
|
|
calc_pnt.y = RINT (ly + center_pnt->pnt.y);
|
|
|
|
|
|
|
|
if (do_line)
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2004-07-05 04:50:25 +08:00
|
|
|
/* Miss out points that come to the same location */
|
|
|
|
if (calc_pnt.x == start_pnt.x && calc_pnt.y == start_pnt.y)
|
|
|
|
continue;
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2004-07-05 04:50:25 +08:00
|
|
|
gfig_draw_line (calc_pnt.x, calc_pnt.y, start_pnt.x, start_pnt.y);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
else
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
do_line = TRUE;
|
|
|
|
first_pnt = calc_pnt;
|
|
|
|
}
|
2003-10-24 21:28:46 +08:00
|
|
|
start_pnt = calc_pnt;
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
gfig_draw_line (first_pnt.x, first_pnt.y, start_pnt.x, start_pnt.y);
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-11-16 22:10:20 +08:00
|
|
|
d_paint_star (GfigObject *obj)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
|
|
|
/* first point center */
|
|
|
|
/* Next point is radius */
|
2004-10-30 23:25:07 +08:00
|
|
|
gdouble *line_pnts;
|
|
|
|
gint seg_count = 0;
|
|
|
|
gint i = 0;
|
|
|
|
DobjPoints *center_pnt;
|
|
|
|
DobjPoints *outer_radius_pnt;
|
|
|
|
DobjPoints *inner_radius_pnt;
|
|
|
|
gint16 shift_x;
|
|
|
|
gint16 shift_y;
|
|
|
|
gdouble ang_grid;
|
|
|
|
gdouble ang_loop;
|
|
|
|
gdouble outer_radius;
|
|
|
|
gdouble inner_radius;
|
|
|
|
gdouble offset_angle;
|
|
|
|
gint loop;
|
2005-12-31 01:50:19 +08:00
|
|
|
GdkPoint first_pnt = { 0, 0 };
|
|
|
|
GdkPoint last_pnt = { 0, 0 };
|
2004-10-30 23:25:07 +08:00
|
|
|
gboolean first = TRUE;
|
2004-12-29 09:16:20 +08:00
|
|
|
gdouble *min_max;
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
g_assert (obj != NULL);
|
|
|
|
|
|
|
|
/* count - add one to close polygon */
|
|
|
|
seg_count = 2 * obj->type_data + 1;
|
|
|
|
|
|
|
|
center_pnt = obj->points;
|
|
|
|
|
|
|
|
if (!center_pnt || !seg_count)
|
|
|
|
return; /* no-line */
|
|
|
|
|
|
|
|
line_pnts = g_new0 (gdouble, 2 * seg_count + 1);
|
2004-12-29 09:16:20 +08:00
|
|
|
min_max = g_new (gdouble, 4);
|
2004-10-27 14:43:52 +08:00
|
|
|
|
2003-10-19 17:44:46 +08:00
|
|
|
/* Go around all the points drawing a line from one to the next */
|
|
|
|
/* Next point defines the radius */
|
|
|
|
outer_radius_pnt = center_pnt->next; /* this defines the vetices */
|
|
|
|
|
|
|
|
if (!outer_radius_pnt)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
g_warning ("Internal error in star - no outer vertice point \n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
inner_radius_pnt = outer_radius_pnt->next; /* this defines the vetices */
|
|
|
|
|
|
|
|
if (!inner_radius_pnt)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
g_warning ("Internal error in star - no inner vertice point \n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
shift_x = outer_radius_pnt->pnt.x - center_pnt->pnt.x;
|
|
|
|
shift_y = outer_radius_pnt->pnt.y - center_pnt->pnt.y;
|
|
|
|
|
|
|
|
outer_radius = sqrt ((shift_x*shift_x) + (shift_y*shift_y));
|
|
|
|
|
|
|
|
/* Lines */
|
2004-10-30 23:25:07 +08:00
|
|
|
ang_grid = 2.0 * G_PI / (2.0 * (gdouble) obj->type_data);
|
2003-10-19 17:44:46 +08:00
|
|
|
offset_angle = atan2 (shift_y, shift_x);
|
|
|
|
|
|
|
|
shift_x = inner_radius_pnt->pnt.x - center_pnt->pnt.x;
|
|
|
|
shift_y = inner_radius_pnt->pnt.y - center_pnt->pnt.y;
|
|
|
|
|
|
|
|
inner_radius = sqrt ((shift_x*shift_x) + (shift_y*shift_y));
|
|
|
|
|
2004-10-30 23:25:07 +08:00
|
|
|
for (loop = 0 ; loop < 2 * obj->type_data ; loop++)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-10-30 23:25:07 +08:00
|
|
|
gdouble lx, ly;
|
2003-10-19 17:44:46 +08:00
|
|
|
GdkPoint calc_pnt;
|
2004-10-27 14:43:52 +08:00
|
|
|
|
2003-10-19 17:44:46 +08:00
|
|
|
ang_loop = (gdouble)loop * ang_grid + offset_angle;
|
2004-10-27 14:43:52 +08:00
|
|
|
|
2003-10-24 21:28:46 +08:00
|
|
|
if (loop % 2)
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
lx = inner_radius * cos (ang_loop);
|
|
|
|
ly = inner_radius * sin (ang_loop);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
else
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
lx = outer_radius * cos (ang_loop);
|
|
|
|
ly = outer_radius * sin (ang_loop);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
calc_pnt.x = RINT (lx + center_pnt->pnt.x);
|
|
|
|
calc_pnt.y = RINT (ly + center_pnt->pnt.y);
|
|
|
|
|
|
|
|
/* Miss out duped pnts */
|
|
|
|
if (!first)
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
if (calc_pnt.x == last_pnt.x && calc_pnt.y == last_pnt.y)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2003-10-20 05:03:21 +08:00
|
|
|
line_pnts[i++] = calc_pnt.x;
|
|
|
|
line_pnts[i++] = calc_pnt.y;
|
|
|
|
last_pnt = calc_pnt;
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
if (first)
|
2004-07-05 04:50:25 +08:00
|
|
|
{
|
|
|
|
first_pnt = calc_pnt;
|
|
|
|
first = FALSE;
|
2004-12-29 09:16:20 +08:00
|
|
|
min_max[0] = min_max[2] = calc_pnt.x;
|
|
|
|
min_max[1] = min_max[3] = calc_pnt.y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
min_max[0] = MIN (min_max[0], calc_pnt.x);
|
|
|
|
min_max[1] = MIN (min_max[1], calc_pnt.y);
|
|
|
|
min_max[2] = MAX (min_max[2], calc_pnt.x);
|
|
|
|
min_max[3] = MAX (min_max[3], calc_pnt.y);
|
2004-07-05 04:50:25 +08:00
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
line_pnts[i++] = first_pnt.x;
|
|
|
|
line_pnts[i++] = first_pnt.y;
|
|
|
|
|
|
|
|
/* Scale before drawing */
|
|
|
|
if (selvals.scaletoimage)
|
2004-12-29 09:16:20 +08:00
|
|
|
{
|
|
|
|
scale_to_original_xy (&line_pnts[0], i / 2);
|
|
|
|
scale_to_original_xy (min_max, 2);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
else
|
2004-12-29 09:16:20 +08:00
|
|
|
{
|
|
|
|
scale_to_xy (&line_pnts[0], i / 2);
|
|
|
|
scale_to_xy (min_max, 2);
|
|
|
|
}
|
2003-10-19 17:44:46 +08:00
|
|
|
|
2004-07-10 06:09:40 +08:00
|
|
|
gimp_free_select (gfig_context->image_id,
|
|
|
|
i, line_pnts,
|
|
|
|
selopt.type,
|
|
|
|
selopt.antia,
|
|
|
|
selopt.feather,
|
|
|
|
selopt.feather_radius);
|
|
|
|
|
2004-12-29 09:16:20 +08:00
|
|
|
paint_layer_fill (min_max[0], min_max[1], min_max[2], min_max[3]);
|
2004-07-10 06:09:40 +08:00
|
|
|
|
2004-11-17 06:45:35 +08:00
|
|
|
if (obj->style.paint_type == PAINT_BRUSH_TYPE)
|
|
|
|
gimp_edit_stroke (gfig_context->drawable_id);
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
g_free (line_pnts);
|
2004-12-29 09:16:20 +08:00
|
|
|
g_free (min_max);
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 22:10:20 +08:00
|
|
|
static GfigObject *
|
|
|
|
d_copy_star (GfigObject *obj)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-11-16 22:10:20 +08:00
|
|
|
GfigObject *np;
|
2003-10-19 17:44:46 +08:00
|
|
|
|
|
|
|
g_assert (obj->type == STAR);
|
|
|
|
|
2004-07-08 01:52:16 +08:00
|
|
|
np = d_new_object (STAR, obj->points->pnt.x, obj->points->pnt.y);
|
2003-10-19 17:44:46 +08:00
|
|
|
np->points->next = d_copy_dobjpoints (obj->points->next);
|
|
|
|
np->type_data = obj->type_data;
|
|
|
|
|
|
|
|
return np;
|
|
|
|
}
|
|
|
|
|
2004-07-07 03:32:55 +08:00
|
|
|
void
|
2004-11-14 10:50:33 +08:00
|
|
|
d_star_object_class_init (void)
|
2004-07-07 03:32:55 +08:00
|
|
|
{
|
2004-11-16 22:10:20 +08:00
|
|
|
GfigObjectClass *class = &dobj_class[STAR];
|
2004-07-07 03:32:55 +08:00
|
|
|
|
|
|
|
class->type = STAR;
|
2004-11-28 23:44:18 +08:00
|
|
|
class->name = "STAR";
|
2004-07-07 03:32:55 +08:00
|
|
|
class->drawfunc = d_draw_star;
|
|
|
|
class->paintfunc = d_paint_star;
|
|
|
|
class->copyfunc = d_copy_star;
|
2004-12-05 01:33:54 +08:00
|
|
|
class->update = d_update_star;
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
2004-12-05 01:33:54 +08:00
|
|
|
static void
|
2003-10-19 17:44:46 +08:00
|
|
|
d_update_star (GdkPoint *pnt)
|
|
|
|
{
|
|
|
|
DobjPoints *center_pnt, *inner_pnt, *outer_pnt;
|
|
|
|
gint saved_cnt_pnt = selvals.opts.showcontrol;
|
|
|
|
|
|
|
|
/* Undraw last one then draw new one */
|
|
|
|
center_pnt = obj_creating->points;
|
2004-10-27 14:43:52 +08:00
|
|
|
|
2003-10-19 17:44:46 +08:00
|
|
|
if (!center_pnt)
|
|
|
|
return; /* No points */
|
|
|
|
|
|
|
|
/* Leave the first pnt alone -
|
|
|
|
* Edge point defines "radius"
|
|
|
|
* Only undraw if already have edge point.
|
|
|
|
*/
|
|
|
|
|
2004-10-27 14:43:52 +08:00
|
|
|
/* Hack - turn off cnt points in draw routine
|
2003-10-19 17:44:46 +08:00
|
|
|
* Looking back over the other update routines I could
|
|
|
|
* use this trick again and cut down on code size!
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
if ((outer_pnt = center_pnt->next))
|
|
|
|
{
|
|
|
|
/* Undraw */
|
|
|
|
inner_pnt = outer_pnt->next;
|
2004-11-22 03:50:18 +08:00
|
|
|
draw_circle (&inner_pnt->pnt, TRUE);
|
|
|
|
draw_circle (&outer_pnt->pnt, TRUE);
|
2003-10-19 17:44:46 +08:00
|
|
|
selvals.opts.showcontrol = 0;
|
|
|
|
d_draw_star (obj_creating);
|
2003-10-24 21:28:46 +08:00
|
|
|
outer_pnt->pnt = *pnt;
|
2004-10-30 23:25:07 +08:00
|
|
|
inner_pnt->pnt.x = pnt->x + (2 * (center_pnt->pnt.x - pnt->x)) / 3;
|
|
|
|
inner_pnt->pnt.y = pnt->y + (2 * (center_pnt->pnt.y - pnt->y)) / 3;
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Radius is a few pixels away */
|
|
|
|
/* First edge point */
|
|
|
|
d_pnt_add_line (obj_creating, pnt->x, pnt->y,-1);
|
|
|
|
outer_pnt = center_pnt->next;
|
|
|
|
/* Inner radius */
|
|
|
|
d_pnt_add_line (obj_creating,
|
2004-10-30 23:25:07 +08:00
|
|
|
pnt->x + (2 * (center_pnt->pnt.x - pnt->x)) / 3,
|
|
|
|
pnt->y + (2 * (center_pnt->pnt.y - pnt->y)) / 3,
|
2004-07-05 04:50:25 +08:00
|
|
|
-1);
|
2003-10-19 17:44:46 +08:00
|
|
|
inner_pnt = outer_pnt->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* draw it */
|
|
|
|
selvals.opts.showcontrol = 0;
|
|
|
|
d_draw_star (obj_creating);
|
|
|
|
selvals.opts.showcontrol = saved_cnt_pnt;
|
|
|
|
|
|
|
|
/* Realy draw the control points */
|
2004-11-22 03:50:18 +08:00
|
|
|
draw_circle (&outer_pnt->pnt, TRUE);
|
|
|
|
draw_circle (&inner_pnt->pnt, TRUE);
|
2003-10-19 17:44:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
d_star_start (GdkPoint *pnt,
|
2004-11-30 07:02:39 +08:00
|
|
|
gboolean shift_down)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-07-08 01:52:16 +08:00
|
|
|
obj_creating = d_new_object (STAR, pnt->x, pnt->y);
|
2003-10-19 17:44:46 +08:00
|
|
|
obj_creating->type_data = star_num_sides;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
d_star_end (GdkPoint *pnt,
|
2004-11-30 07:02:39 +08:00
|
|
|
gboolean shift_down)
|
2003-10-19 17:44:46 +08:00
|
|
|
{
|
2004-11-22 03:50:18 +08:00
|
|
|
draw_circle (pnt, TRUE);
|
2004-07-05 04:50:25 +08:00
|
|
|
add_to_all_obj (gfig_context->current_obj, obj_creating);
|
2003-10-19 17:44:46 +08:00
|
|
|
obj_creating = NULL;
|
|
|
|
}
|
|
|
|
|