summaryrefslogtreecommitdiff
path: root/transform.c
diff options
context:
space:
mode:
Diffstat (limited to 'transform.c')
-rw-r--r--transform.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/transform.c b/transform.c
index 36a2f3e..557cbb8 100644
--- a/transform.c
+++ b/transform.c
@@ -72,28 +72,6 @@ TFillPolygon (register Display *dpy, Drawable d, GC gc, Transform *t,
}
void
-TDrawArc (register Display *dpy, Drawable d, GC gc, Transform *t,
- double x, double y, double width, double height,
- int angle1, int angle2)
-{
- int xx, xy, xw, xh;
-
- xx = Xx(x,y,t);
- xy = Xy(x,y,t);
- xw = Xwidth (width, height, t);
- xh = Xheight (width, height, t);
- if (xw < 0) {
- xx += xw;
- xw = -xw;
- }
- if (xh < 0) {
- xy += xh;
- xh = -xh;
- }
- XDrawArc (dpy, d, gc, xx, xy, xw, xh, angle1, angle2);
-}
-
-void
TFillArc (register Display *dpy, Drawable d, GC gc, Transform *t,
double x, double y, double width, double height,
int angle1, int angle2)