home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / cpp / graphics / Conics.sit.hqx / Conics / Include / LTypes.h < prev    next >
Text File  |  1996-11-08  |  184b  |  15 lines

  1. //copyright 1996 Brian Cully
  2. //All rights reserved
  3.  
  4. #ifndef __LTYPES_H
  5. #define __LTYPES_H
  6.  
  7. typedef struct p2d {
  8.     float x, y;
  9. } p2d;
  10.  
  11. typedef struct p3d {
  12.     float x, y, z;
  13. } p3d;
  14.  
  15. #endif