Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
627 B

  1. /**************************************************************************
  2. *
  3. * Copyright (c) 2000 Microsoft Corporation
  4. *
  5. * Module Name:
  6. *
  7. * Main cycloid canvas paint procedure
  8. *
  9. * Created:
  10. *
  11. * 06/11/2000 asecchia
  12. * Created it.
  13. *
  14. **************************************************************************/
  15. #pragma once
  16. #include "precomp.hpp"
  17. class HypoCycloid :public DrawingObject {
  18. INT a;
  19. INT b;
  20. public:
  21. HypoCycloid(int a_, int b_) {
  22. a=a_;
  23. b=b_;
  24. }
  25. virtual void Draw(Graphics *g, int x, int y, int width, int height);
  26. };