mirror of https://github.com/GNOME/gimp.git
app/vectors/gimpvectors.[ch] app/vectors/gimpstroke.[ch] Cleanup - removed
2003-09-07 Dave Neary <bolsh@gimp.org> * app/vectors/gimpvectors.[ch] * app/vectors/gimpstroke.[ch] * app/vectors/gimpbezierstroke.c: Cleanup - removed libart from the included headers in the .h files, don't pass around libart objects any more. Still stub code.
This commit is contained in:
parent
dda6e4822a
commit
e88298a35c
|
@ -117,8 +117,7 @@ static void gimp_bezier_coords_subdivide2 (const GimpCoords *beziercoords,
|
|||
static gboolean gimp_bezier_coords_is_straight (const GimpCoords *beziercoords,
|
||||
const gdouble precision);
|
||||
|
||||
static void gimp_bezier_stroke_to_art_point (const GimpStroke *stroke,
|
||||
ArtVpath *vec);
|
||||
static void gimp_bezier_stroke_art_stroke (const GimpStroke *stroke);
|
||||
|
||||
|
||||
/* private variables */
|
||||
|
@ -183,7 +182,7 @@ gimp_bezier_stroke_class_init (GimpBezierStrokeClass *klass)
|
|||
stroke_class->extend = gimp_bezier_stroke_extend;
|
||||
stroke_class->connect_stroke = gimp_bezier_stroke_connect_stroke;
|
||||
stroke_class->interpolate = gimp_bezier_stroke_interpolate;
|
||||
stroke_class->to_art_point = gimp_bezier_stroke_to_art_point;
|
||||
stroke_class->art_stroke = gimp_bezier_stroke_art_stroke;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -1614,10 +1613,9 @@ gimp_bezier_coords_subdivide2 (const GimpCoords *beziercoords,
|
|||
}
|
||||
|
||||
static void
|
||||
gimp_bezier_stroke_to_art_point (const GimpStroke *stroke,
|
||||
ArtVpath *vec)
|
||||
gimp_bezier_stroke_art_stroke (const GimpStroke *stroke)
|
||||
{
|
||||
g_printerr ("gimp_bezier_stroke_to_art_point: implement me!\n");
|
||||
g_printerr ("gimp_bezier_stroke_art_stroke: implement me!\n");
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue