summaryrefslogtreecommitdiffstats
path: root/otherlibs/graph/draw.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2000-04-05 18:30:22 +0000
committerDamien Doligez <damien.doligez-inria.fr>2000-04-05 18:30:22 +0000
commit3f6a493b87dcfb9b49e22313fd5f7c321c3f77d1 (patch)
tree49cf875c6ec55e6f56c5e2546a72c501d4da75a1 /otherlibs/graph/draw.c
parent3006772f8506106be60015622d67fa791797490b (diff)
MacOS: ajout macosunix; portage bigarray et systhreads; tabs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3042 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/graph/draw.c')
-rw-r--r--otherlibs/graph/draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/graph/draw.c b/otherlibs/graph/draw.c
index 485e3828b..4fb46d758 100644
--- a/otherlibs/graph/draw.c
+++ b/otherlibs/graph/draw.c
@@ -56,7 +56,7 @@ value gr_lineto(value vx, value vy)
grx, Bcvt(gry), x, Bcvt(y));
if(grdisplay_mode) {
XDrawLine(grdisplay, grwindow.win, grwindow.gc,
- grx, Wcvt(gry), x, Wcvt(y));
+ grx, Wcvt(gry), x, Wcvt(y));
XFlush(grdisplay);
}
grx = x;
@@ -98,7 +98,7 @@ value gr_draw_arc_nat(value vx, value vy, value vrx, value vry, value va1, value
x - rx, Bcvt(y) - ry, rx * 2, ry * 2, a1 * 64, (a2 - a1) * 64);
if(grdisplay_mode) {
XDrawArc(grdisplay, grwindow.win, grwindow.gc,
- x - rx, Wcvt(y) - ry, rx * 2, ry * 2, a1 * 64, (a2 - a1) * 64);
+ x - rx, Wcvt(y) - ry, rx * 2, ry * 2, a1 * 64, (a2 - a1) * 64);
XFlush(grdisplay);
}
return Val_unit;