home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
gondwana.ecr.mu.oz.au/pub/
/
Graphics.tar
/
Graphics
/
VOGLE.ZIP
/
SRC
/
MSFORT
/
FARCS.FOR
< prev
next >
Wrap
Text File
|
2000-02-11
|
867b
|
40 lines
interface to subroutine C_arc[c](x, y, r, s, e)
real *8 x, y, r, s, e
end
interface to subroutine C_sector[c](x, y, r, s, e)
real *8 x, y, r, s, e
end
interface to subroutine C_circle[c](x, y, r)
real *8 x, y, r
end
interface to subroutine C_arcprecision[c](n)
integer *2 n
end
interface to subroutine C_circleprecision[c](n)
integer *2 n
end
subroutine arc(x, y, r, s, e)
call C_arc(x, y, r, s, e)
end
subroutine sector(x, y, r, s, e)
call C_sector(x, y, r, s, e)
end
subroutine circle(x, y, r)
call C_circle(x, y, r)
end
subroutine arcprecision(n)
call C_arcprecision(n)
end
subroutine circleprecision(n)
call C_circleprecision(n)
end