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.

48 lines
1.3 KiB

  1. #ifndef __gluhull_h_
  2. #define __gluhull_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. * hull.h - $Revision: 1.1 $
  16. */
  17. #include "trimline.h"
  18. #include "trimregi.h"
  19. class GridTrimVertex;
  20. class Gridline;
  21. class Uarray;
  22. class Hull : virtual public TrimRegion {
  23. public:
  24. Hull( void );
  25. ~Hull( void );
  26. void init( void );
  27. GridTrimVertex * nextlower( GridTrimVertex * );
  28. GridTrimVertex * nextupper( GridTrimVertex * );
  29. private:
  30. struct Side {
  31. Trimline *left;
  32. Gridline *line;
  33. Trimline *right;
  34. long index;
  35. };
  36. Side lower;
  37. Side upper;
  38. Trimline fakeleft;
  39. Trimline fakeright;
  40. };
  41. #endif /* __gluhull_h_ */