home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Prog_objet / figure.cc < prev    next >
C/C++ Source or Header  |  1998-11-09  |  248b  |  25 lines

  1.  
  2. #include <math.h>
  3. #include "figure.h"
  4.  
  5.  
  6. void Figure::translate(float dx, float dy)
  7. {
  8.   _x+=dx;
  9.   _y+=dy;
  10. }
  11.  
  12. float Rectangle::surface() const
  13. {
  14.   return _c1*_c2;
  15. }
  16.  
  17. float Cercle::surface() const
  18. {
  19.   return M_PI*_r*_r;
  20. }
  21.  
  22.  
  23.  
  24.  
  25.