home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / new / misc / sci / multiplot / rexx / readme.1st < prev    next >
Text File  |  1994-04-17  |  1KB  |  47 lines

  1. Naming Conventions for Multiplot ARexx macros:
  2.  
  3. All Multiplot ARexx macros should be named with the suffix ".mpt".
  4. In order to make the invokation of Multiplot macros easier, it
  5. was decided to use a naming convention which indicates the
  6. requirements for each macro as a prefix. For example:
  7.  
  8. Startup Macros
  9.    Macros which may only be called from the STARTUP option on the
  10.    workbench or CLI should begin with the prefix "Startup".
  11.  
  12.    eg:  StartupReadTable.mpt
  13.  
  14. Macros Requiring a Single Point Selected
  15.    Macros which require a single point to be selected should be named
  16.    with the prefix "Point".
  17.  
  18.    eg:  PointTrunkateSet.mpt 
  19.  
  20.  
  21. Macros Requiring a Fixed Number of Points Selected
  22.    Macros which require a given number of points to be selected should
  23.    be named with the prefix "nPoints", where n is the number of points.
  24.  
  25.    eg:  2PointsSlope.mpt
  26.  
  27. Macros Requiring Multiple (but unspecified numbers of Points Selected
  28.    Macros which require a multiple but variable numbers of points to be
  29.    selected should be named with the prefix "NPoints"
  30.    be named with the prefix "NPoints".
  31.  
  32.    eg:  NPointsExtract.mpt
  33.  
  34. Macros Requiring Set/s to be Selected
  35.    Similar rules apply, except use the word "Set" instead of "Point".
  36.  
  37.    eg:  SetScaleX.mpt
  38.         2SetsJoin.mpt
  39.         NSetsExtract.mpt
  40.  
  41. Macros with no Requirements
  42.    If the macro does not require user selection to be run, the macro
  43.    name should be prefixed with an underscore "_".
  44.  
  45.    eg:  _DoubleYAxes.mpt
  46.  
  47.