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 / Angle.h next >
Text File  |  1996-11-08  |  312b  |  17 lines

  1. //Copyright 1996 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __ANGLE_H
  5. #define __ANGLE_H
  6.  
  7. class TAngle {
  8. protected:
  9.     float angle, sinangle, cosangle;
  10. public:
  11.     float GetAngle() {return(angle);};
  12.     void SetAngle( float );
  13.     float GetSinAngle() {return(sinangle);};
  14.     float GetCosAngle() {return(cosangle);};
  15. };
  16.  
  17. #endif