home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / plplot.lzh / PLPLOT / PLPLOT.LZH / plplot / src / plsmin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-03-23  |  233 b   |  15 lines

  1. #include "plplot.h"
  2.  
  3. void plsmin(def,scale)
  4. PLFLT def, scale;
  5. {
  6.     PLFLT defalt, ht;
  7.  
  8.     if (def !=  0.0)
  9.        smin(def,(PLFLT)(scale*def));
  10.     else {
  11.        gmin(&defalt,&ht);
  12.        smin(defalt,(PLFLT)(scale*defalt));
  13.     }
  14. }
  15.