Copyright (c) 1985 Regents of the University of California.
All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.
@(#)plot.3 6.2 (Berkeley) 06/07/85
All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.
@(#)plot.3 6.2 (Berkeley) 06/07/85
PLOT 3F ""
C 6 NAME
plot: openpl et al. - f77 library interface to plot (3X)
libraries.
SYNOPSIS
call openpl()Draw a rectangle and leave the cursor at ( ix2 , iy2 ).call erase()
call label(str) character str*(*)
call line(ix1, iy1, ix2, iy2)
call box(ix1, iy1, ix2, iy2)
call circle(ix, iy, ir)
call arc(ix, iy, ix0, iy0, ix1, iy1)
call move(ix, iy)
call cont(ix, iy)
call point(ix, iy)
call linemd(str) character str*(*)
call space(ix0, iy0, ix1, iy1)
call clospl()
DESCRIPTION
These are interface subroutines, in the library
-lf77plot , allowing
f77 users to call the
plot (3X) graphics routines
which generate graphic output in a relatively
device-independent manner.
The
f77 subroutine names are the same as the
C function names except that
linemod and
closepl have been shortened to
linemd and
clospl . See
plot (5) and
plot (3X) for a description
of their effect.
Only the first 255 character in string arguments to label and linemd are used.
This library must be specified in the f77 (1) command before the device specific graphics library; for example, to compile and load a FORTRAN program in prog.f to run on a Tektronix 4014 terminal:
f77 prog.f -lf77plot -l4014
See plot (3X) for a complete list of device specific plotting libraries.
"SEE ALSO"
plot(5), plot(1G), plot(3X), graph(1G)