Remove unexposed and unused code

This commit is contained in:
hugovk 2017-05-15 22:59:25 +03:00
parent 206e316c0e
commit 6e9e4c1027

View File

@ -1025,20 +1025,6 @@ ImagingOutlineCurve(ImagingOutline outline, float x1, float y1,
return 0;
}
int
ImagingOutlineCurve2(ImagingOutline outline, float cx, float cy,
float x3, float y3)
{
/* add bezier curve based on three control points (as
in the Flash file format) */
return ImagingOutlineCurve(
outline,
(outline->x + cx + cx)/3, (outline->y + cy + cy)/3,
(cx + cx + x3)/3, (cy + cy + y3)/3,
x3, y3);
}
int
ImagingOutlineClose(ImagingOutline outline)
{