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.

37 lines
1.1 KiB

  1. #ifndef __glubezierarc_h
  2. #define __glubezierarc_h
  3. /**************************************************************************
  4. * *
  5. * Copyright (C) 1992, Silicon Graphics, Inc. *
  6. * *
  7. * These coded instructions, statements, and computer programs contain *
  8. * unpublished proprietary information of Silicon Graphics, Inc., and *
  9. * are protected by Federal copyright law. They may not be disclosed *
  10. * to third parties or copied or duplicated in any form, in whole or *
  11. * in part, without the prior written consent of Silicon Graphics, Inc. *
  12. * *
  13. **************************************************************************/
  14. /*
  15. * bezierarc.h - $Revision: 1.1 $
  16. */
  17. #include "myassert.h"
  18. class Mapdesc;
  19. #ifdef NT
  20. class BezierArc : public PooledObj { /* a bezier arc */
  21. public:
  22. #else
  23. struct BezierArc : public PooledObj { /* a bezier arc */
  24. #endif
  25. REAL * cpts; /* control points of arc */
  26. int order; /* order of arc */
  27. int stride; /* REAL distance between points */
  28. long type; /* curve type */
  29. Mapdesc * mapdesc;
  30. };
  31. #endif /* __glubezierarc_h */