home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / 2D_3D / Tester3D / Source / 3D.h next >
Encoding:
C/C++ Source or Header  |  1990-07-04  |  226 b   |  10 lines

  1. /* 3D.h */
  2.  
  3. /*    This file (3D.h) declares the vector3D type. This is not an
  4.     object so that operations on it and storage etc. can be as flexible
  5.     and direct as possible. */
  6.     
  7. typedef struct vector3D {
  8.     float x,y,z;
  9. } vector3D;
  10.