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.

42 lines
1.4 KiB

  1. #ifndef __glubasiccrveval_h_
  2. #define __glubasiccrveval_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. * basiccurveeval.h - $Revision: 1.1 $
  16. */
  17. #include "types.h"
  18. #include "displaym.h"
  19. #include "cachinge.h"
  20. class BasicCurveEvaluator : public CachingEvaluator {
  21. public:
  22. virtual void domain1f( REAL, REAL );
  23. virtual void range1f( long, REAL *, REAL * );
  24. virtual void enable( long );
  25. virtual void disable( long );
  26. virtual void bgnmap1f( long );
  27. virtual void map1f( long, REAL, REAL, long, long, REAL * );
  28. virtual void mapgrid1f( long, REAL, REAL );
  29. virtual void mapmesh1f( long, long, long );
  30. virtual void evalcoord1f( long, REAL );
  31. virtual void endmap1f( void );
  32. virtual void bgnline( void );
  33. virtual void endline( void );
  34. };
  35. #endif /* __glubasiccrveval_h_ */