home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 344b.lha / plplot_v2.6 / README.AMIGA < prev    next >
Text File  |  1990-01-27  |  6KB  |  143 lines

  1. For a color requester I just use the palette program that comes with the
  2. WorkBench 1.3 enhancer package. PLPLOT looks for this program in TOOLS:
  3. and if it's not there it looks in sys:tools, so you'll program want
  4. to "assign" tools: to the directory in which the palette program resides.
  5.  
  6. PLPLOT looks for the fonts in PLFONTS: so make sure it is "assign"ed
  7. too (put it in your startup sequence).
  8.  
  9. About the Amiga drivers:
  10.  
  11.    ******
  12.  
  13.    IFF and Preferences
  14.  
  15.    Tom Rokicki (thanks!) provided the code for the iff and preferences
  16.    drivers.
  17.  
  18.    The IFF driver will prompt for resolution, page size,
  19.    filename and orientation unless plsetup() and plselect() are used.
  20.  
  21.    The preferences driver creates a black and white graph on your
  22.    preferences supported printer. It uses the preferences selected
  23.    density and page size limits and ignores most of the other stuff.
  24.    If you have selected "ignore" in the page size limit options
  25.    (see the 1.3 Enhancer manual) then a full page graph is produced.
  26.    The other options operate as described in the Enhancer manual.
  27.    Only "ignore" and "bounded" produce aspect ratio correct plots
  28.    (usually unimportant unless x and y must have the same scaling
  29.    like for pie charts or polar plots). You can get very high quality
  30.    plots with this driver. A full page, high resolution plot
  31.    requires a lot of memory though (An 8"x10" 300 dpi plot requires
  32.    (8*300)*(10*300)/8 = 900000 bytes).  You can use the page limits
  33.    to reduce the memory requirements and still get high quality
  34.    output.
  35.  
  36.    ******
  37.  
  38.    postscript
  39.  
  40.    The postscript driver was written by Sam Paolucci (thanks!) for
  41.    the previous version. I don't have a ps printer and so was unable
  42.    to upgrade the driver to be completely version compatible with this
  43.    version. (I didn't know how to set the pen width.)
  44.  
  45.    ******
  46.  
  47.    Aegis Draw
  48.  
  49.    I created this one because I have Draw2000 and it was easy to do.
  50.    I don't know how popular it is. It does provide a very nice
  51.    method for touching up graphs.
  52.  
  53.    ******
  54.  
  55.    HP Plotter (or PLT: device)
  56.  
  57.    The plt: device is an HP plotter compatible device handler written by
  58.    Jim Miller and Rich Champeaux. It is freely redistributable, but
  59.    it is not included with this package (it's big enough already!).
  60.    It gives high quality output like the preferences driver but with
  61.    full preferences support. Usually requires less memory (for full
  62.    page plots) than the preferences driver, but is slower. Highly
  63.    recommended if you have a color printer or are memory strapped.
  64.    I don't know exactly which model HP plotter this is compatible
  65.    with (the HP7470 I think).
  66.  
  67.    *******
  68.  
  69.    Amiga window
  70.  
  71.    I've completely redone this driver.  I hope you agree that it is much
  72.    nicer. A normal window with standard intuition gadgets is now used.
  73.    You can resize the window even while the program is plotting in the
  74.    window (see the "Redraw Enabled" section below).  If you are making
  75.    several graphs on separate pages, use the close gadget to advance
  76.    from one "page" to the next.
  77.  
  78.    "Plplot" menu selections:
  79.  
  80.        "Save Configuration"
  81.           - Saves current window configuration (window size, screen type,
  82.             screen depth, colors, resolution, etc.). The configuration
  83.             is saved in s:Plplot.def (only 54 bytes).
  84.  
  85.        "Reset"
  86.           - Resets the window to the configuration in s:Plplot.def
  87.             (or to a default config if this file doesn't exist).
  88.  
  89.        "Maintain Plot Aspect"
  90.           - If this is checked the plot aspect ratio is maintained as the
  91.             window is resized (handy for polar plots, etc.). Default
  92.             is unchecked in which case x and y are stretched
  93.             independently to fit in the window.
  94.  
  95.        "Redraw Enabled"
  96.           - If this is checked, then the graphics commands are buffered
  97.             in t:plplot.dat. This file is used to redraw the plot when
  98.             required. It's status is checked only when a new graph is
  99.             started. The buffer is also used to create the "Full Page"
  100.             prints under the "Print" selection.
  101.  
  102.        "Select Screen Type"
  103.           - A submenu allows the user to select either "Workbench" or
  104.             "Custom".
  105.  
  106.        "Print"
  107.           - There are three submenu options here. The "Bitmap Dump"
  108.             does just that (with full preferences support). The
  109.             output is pretty jagged, but you can play around with
  110.             the preferences stuff (scaling, smoothing, etc.) to
  111.             improve things. The other two submenus are
  112.             "Full Page (Landscape)" and "Full Page (Portrait)". This
  113.             uses the graphics buffer file (see "Redraw Enabled" above)
  114.             to create graphics output similar to the preferences
  115.             driver. However the aspect ratio can not be maintained.
  116.             Same preferences options are used as in preferences driver.
  117.  
  118.        "Save Bitmap as IFF File"
  119.           - Self explanatory. You can use this to save your images and
  120.             then touch them up (do area fills, etc.) with your favorite
  121.             paint program.
  122.  
  123.    "Screen Format" selections: (This menu only appears on the custom screen)
  124.        "Interlaced"
  125.        "High Resolution"
  126.        "Number of Colors"
  127.        "Set Color Palette"
  128.           - I think these are all self-explanatory. You can select either
  129.             2, 4, 8, or 16 colors.
  130.  
  131.  
  132.    Tony Richardson
  133.  
  134.    EMAIL   amr@dukee.egr.duke.edu
  135.  
  136.    USMAIL  Tony Richardson              Tony Richardson
  137.            Dept of Elect Eng            311 S. LaSalle St. #41B
  138.            Duke University              Durham, NC 27705
  139.            Durham, NC 27706
  140.  
  141.            ph 919-684-3123              ph 919-286-7101
  142.  
  143.