olor.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // olor.h: interface for the Color class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_OLOR_H__7B9C7AE3_C923_40D8_8CEE_9D843937466B__INCLUDED_)
  5. #define AFX_OLOR_H__7B9C7AE3_C923_40D8_8CEE_9D843937466B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class Color  
  10. {
  11. public:
  12. int GetBlue();
  13. int GetGreen();
  14. int GetRed();
  15. float GetB();
  16. float GetS();
  17. float GetH();
  18. Color(int red,int green,int blue);
  19. virtual ~Color();
  20. private:
  21. void RGBtoHSB(int red, int green, int blue, float * H,float * S ,float * B);
  22. int m_red;
  23. int m_green;
  24. int m_blue;
  25. float m_H;
  26.     float m_S;
  27.     float m_B;
  28.     
  29. };
  30. #endif // !defined(AFX_OLOR_H__7B9C7AE3_C923_40D8_8CEE_9D843937466B__INCLUDED_)