blob: b2d162c801cc5009f27c69e3f967180ebf37a093 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "../lib/ids.h"
# IDS_FILLAREA -- Fill a closed area.
procedure ids_fillarea (p, npts)
short p[ARB] # points defining line
int npts # number of points, i.e., (x,y) pairs
include "../lib/ids.com"
begin
# Not implemented yet.
call ids_polyline (p, npts)
end
|