home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / misc / math / fastplot / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-21  |  1.3 KB  |  58 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. FastPlot
  6. .type
  7. Graphing
  8. .short
  9. A Modula-2 callable plot library.
  10. .aminet-dir
  11. misc/math
  12. .description
  13. A fast Modula-2 plotting library which produces bar charts, linear, curved,
  14. scatter, logarithmic, and semi-log plots.  Any number of plots can be shown
  15. on a custom screen with up to 32 colours.  Automatic x- and y-axis labels,
  16. grids, local minima/maxima labelling, and an information box.
  17. .version
  18. 1.00
  19. .date
  20. 1995.03.16
  21. .author
  22. Michael Griebling
  23. .requirements
  24. Requires OS 2.0+
  25. .distribution
  26. Freeware
  27. .address
  28. 150 Clark Blvd., Suite One
  29. Brampton, Ontario
  30. Canada, L6T 4Y8
  31. .source
  32. Includes Modula-2 source code and a demonstration program.
  33. .docs
  34. FastPlot.guide
  35. .described-by
  36. Michael Griebling (mgriebling@bix.com)
  37. .submittal
  38. Submitted via ftp directly by the author.
  39. .execute
  40. set choice `RequestChoice "FastPlot" "Please select an option" "View Guide" "View Pics" "Cancel"`
  41.  
  42. if $choice EQ "0"
  43.   quit 5
  44. endif
  45.  
  46. if $choice EQ "1"
  47.   MetaTool FastPlot.guide GUIDE
  48. endif
  49.  
  50. if $choice EQ "2"
  51.   set filechoice `RequestFile TITLE "Select File" PATTERN "#?.iff"`
  52.   set dirchoice `pathname $filechoice`
  53.   set filechoice `basename $filechoice`
  54.   failat 21
  55.   cd $dirchoice
  56.   MetaTool $filechoice ILBM
  57. endif
  58.