home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / atltangram / tantype.idl < prev    next >
Text File  |  1998-03-26  |  551b  |  25 lines

  1. ///////////////////////////////////////////////////////////
  2. //
  3. //    TanType.idl - Graphic types used by Tangram Interfaces.
  4. //
  5.  
  6. ///////////////////////////////////////////////////////////
  7. //
  8. //    TangramSize2d - Two dimensional size using doubles.
  9. //
  10. typedef struct tagTangramSize2d_ 
  11. {
  12.     double cx ;
  13.     double cy ;
  14. } TangramSize2d;
  15.  
  16. ///////////////////////////////////////////////////////////
  17. //
  18. //    TangramPoin2d - Two dimensional point using doubles.
  19. //
  20. typedef struct tagTangramPoint2d_
  21. {
  22.     double x ;
  23.     double y ;
  24. } TangramPoint2d;
  25.