home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
gondwana.ecr.mu.oz.au/pub/
/
Graphics.tar
/
Graphics
/
VOGLE.ZIP
/
VOGLE
/
SRC
/
MSFORT
/
FPOINTS.FOR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-02-11
|
313 b
|
16 lines
interface to subroutine C_point[c](x, y, z)
real *8 x, y, z
end
interface to subroutine C_point2[c](x, y)
real *8 x, y
end
subroutine point(x, y, z)
call C_point(x, y, z)
end
subroutine point2(x, y)
call C_point2(x, y)
end