home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c13 / atltrig / trig.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  477 b   |  28 lines

  1. // trig.cpp : Implementation of Ctrig
  2. #include "stdafx.h"
  3. #include "ATLtrig.h"
  4. #include "trig.h"
  5.  
  6. #include <math.h>
  7.  
  8. /////////////////////////////////////////////////////////////////////////////
  9. // Ctrig
  10.  
  11. STDMETHODIMP Ctrig::ATLsin(double x, double * r)
  12. {
  13.     *r = sin(x);
  14.     return S_OK;
  15. }
  16.  
  17. STDMETHODIMP Ctrig::ATLcos(double x, double * r)
  18. {
  19.     *r = cos(x);
  20.     return S_OK;
  21. }
  22.  
  23. STDMETHODIMP Ctrig::ATLtan(double x, double * r)
  24. {
  25.     *r = tan(x);
  26.     return S_OK;
  27. }
  28.