home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Educational / IP_Graph3D / Source / typedefs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-06-12  |  133 b   |  12 lines

  1. /* typedefs.h
  2. */
  3.  
  4. typedef float **bigArray;
  5.  
  6. typedef float vector3D[3];
  7.  
  8. typedef struct PointThreeD {
  9.     float x,y,z;
  10. } PointThreeD;
  11.  
  12.