home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / Viewers / raytracers / rpi / Source / vector.h < prev   
Encoding:
C/C++ Source or Header  |  1991-10-08  |  263 b   |  19 lines

  1.  
  2. /*
  3.  * (c) 1988 by George Kyriazis
  4.  */
  5.  
  6. /*
  7.  * definitions for the vector routines used in other files
  8.  */
  9.  
  10. struct    vector    vadd();
  11. struct    vector    vsub();
  12. struct    vector    vneg();
  13. struct    vector    svproduct();
  14. double    vdot();
  15. struct    vector    vcross();
  16. struct    vector    norm();
  17.  
  18.  
  19.