home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST169.PRG < prev    next >
Encoding:
Text File  |  1989-08-08  |  545 b   |  20 lines

  1. *********************
  2.  
  3. FUNCTION Matrix3
  4.  
  5.    PARAMETERS _matbase_y, _matbase_z, _matx, _maty, _matz
  6.  
  7.    IF PCOUNT() < 5 .OR. (_matbase_y < 0 .OR. _matbase_z < 0 .OR. _matx < 0 .OR. _maty < 0 .OR. _matz < 0)
  8.       * Error due to too few parameters or there is a negative
  9.       * number in one of the parameters
  10.       RETURN(0)
  11.    ENDIF
  12.  
  13.    PRIVATE _retvalue1, _retvalue2
  14.  
  15.    _retvalue1 = ((_matx - 1) * _matbase_y) * _matbase_z
  16.    _retvalue2 = (_maty - 1) * _matbase_y
  17.    RETURN(_retvalue1 + _retvalue2 + _matz)
  18.  
  19. * End of File
  20.