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.

116 lines
2.1 KiB

  1. /**************************************************************************
  2. * *
  3. * Copyright (C) 1992, Silicon Graphics, Inc. *
  4. * *
  5. * These coded instructions, statements, and computer programs contain *
  6. * unpublished proprietary information of Silicon Graphics, Inc., and *
  7. * are protected by Federal copyright law. They may not be disclosed *
  8. * to third parties or copied or duplicated in any form, in whole or *
  9. * in part, without the prior written consent of Silicon Graphics, Inc. *
  10. * *
  11. **************************************************************************/
  12. /*
  13. * basiccrveval.c++ - $Revision: 1.1 $
  14. * Derrick Burns - 1992
  15. */
  16. #include "mystdio.h"
  17. #include "types.h"
  18. #include "basiccrv.h"
  19. void
  20. BasicCurveEvaluator::domain1f( REAL, REAL )
  21. {
  22. #ifndef NDEBUG
  23. dprintf( "domain1f\n" );
  24. #endif
  25. }
  26. void
  27. BasicCurveEvaluator::range1f( long type, REAL *, REAL * )
  28. {
  29. #ifndef NDEBUG
  30. dprintf( "range1f\n" );
  31. #endif
  32. }
  33. void
  34. BasicCurveEvaluator::enable( long )
  35. {
  36. #ifndef NDEBUG
  37. dprintf( "enable\n" );
  38. #endif
  39. }
  40. void
  41. BasicCurveEvaluator::disable( long )
  42. {
  43. #ifndef NDEBUG
  44. dprintf( "disable\n" );
  45. #endif
  46. }
  47. void
  48. BasicCurveEvaluator::bgnmap1f( long )
  49. {
  50. #ifndef NDEBUG
  51. dprintf( "bgnmap1f\n" );
  52. #endif
  53. }
  54. void
  55. BasicCurveEvaluator::map1f( long, REAL, REAL, long, long, REAL * )
  56. {
  57. #ifndef NDEBUG
  58. dprintf( "map1f\n" );
  59. #endif
  60. }
  61. void
  62. BasicCurveEvaluator::mapgrid1f( long, REAL, REAL )
  63. {
  64. #ifndef NDEBUG
  65. dprintf( "mapgrid1f\n" );
  66. #endif
  67. }
  68. void
  69. BasicCurveEvaluator::mapmesh1f( long, long, long )
  70. {
  71. #ifndef NDEBUG
  72. dprintf( "mapmesh1f\n" );
  73. #endif
  74. }
  75. void
  76. BasicCurveEvaluator::evalcoord1f( long, REAL )
  77. {
  78. #ifndef NDEBUG
  79. dprintf( "evalcoord1f\n" );
  80. #endif
  81. }
  82. void
  83. BasicCurveEvaluator::endmap1f( void )
  84. {
  85. #ifndef NDEBUG
  86. dprintf( "endmap1f\n" );
  87. #endif
  88. }
  89. void
  90. BasicCurveEvaluator::bgnline( void )
  91. {
  92. #ifndef NDEBUG
  93. dprintf( "bgnline\n" );
  94. #endif
  95. }
  96. void
  97. BasicCurveEvaluator::endline( void )
  98. {
  99. #ifndef NDEBUG
  100. dprintf( "endline\n" );
  101. #endif
  102. }