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.

206 lines
3.5 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. * basicsurfaceevaluator.c++ - $Revision: 1.2 $
  14. * Derrick Burns - 1992
  15. */
  16. #include "mystdio.h"
  17. #include "types.h"
  18. #include "basicsur.h"
  19. void
  20. BasicSurfaceEvaluator::domain2f( REAL, REAL, REAL, REAL )
  21. {
  22. #ifndef NDEBUG
  23. dprintf( "domain2f\n" );
  24. #endif
  25. }
  26. void
  27. BasicSurfaceEvaluator::polymode( long )
  28. {
  29. #ifndef NDEBUG
  30. dprintf( "polymode\n" );
  31. #endif
  32. }
  33. void
  34. BasicSurfaceEvaluator::range2f( long type, REAL *from, REAL *to )
  35. {
  36. #ifndef NDEBUG
  37. dprintf( "range2f type %ld, from (%g,%g), to (%g,%g)\n",
  38. type, from[0], from[1], to[0], to[1] );
  39. #endif
  40. }
  41. void
  42. BasicSurfaceEvaluator::enable( long )
  43. {
  44. #ifndef NDEBUG
  45. dprintf( "enable\n" );
  46. #endif
  47. }
  48. void
  49. BasicSurfaceEvaluator::disable( long )
  50. {
  51. #ifndef NDEBUG
  52. dprintf( "disable\n" );
  53. #endif
  54. }
  55. void
  56. BasicSurfaceEvaluator::bgnmap2f( long )
  57. {
  58. #ifndef NDEBUG
  59. dprintf( "bgnmap2f\n" );
  60. #endif
  61. }
  62. void
  63. BasicSurfaceEvaluator::endmap2f( void )
  64. {
  65. #ifndef NDEBUG
  66. dprintf( "endmap2f\n" );
  67. #endif
  68. }
  69. void
  70. BasicSurfaceEvaluator::map2f( long, REAL, REAL, long, long,
  71. REAL, REAL, long, long,
  72. REAL * )
  73. {
  74. #ifndef NDEBUG
  75. dprintf( "map2f\n" );
  76. #endif
  77. }
  78. void
  79. BasicSurfaceEvaluator::mapgrid2f( long, REAL, REAL, long, REAL, REAL )
  80. {
  81. #ifndef NDEBUG
  82. dprintf( "mapgrid2f\n" );
  83. #endif
  84. }
  85. void
  86. BasicSurfaceEvaluator::mapmesh2f( long, long, long, long, long )
  87. {
  88. #ifndef NDEBUG
  89. dprintf( "mapmesh2f\n" );
  90. #endif
  91. }
  92. void
  93. BasicSurfaceEvaluator::evalcoord2f( long, REAL, REAL )
  94. {
  95. #ifndef NDEBUG
  96. dprintf( "evalcoord2f\n" );
  97. #endif
  98. }
  99. void
  100. BasicSurfaceEvaluator::evalpoint2i( long, long )
  101. {
  102. #ifndef NDEBUG
  103. dprintf( "evalpoint2i\n" );
  104. #endif
  105. }
  106. void
  107. BasicSurfaceEvaluator::bgnline( void )
  108. {
  109. #ifndef NDEBUG
  110. dprintf( "bgnline\n" );
  111. #endif
  112. }
  113. void
  114. BasicSurfaceEvaluator::endline( void )
  115. {
  116. #ifndef NDEBUG
  117. dprintf( "endline\n" );
  118. #endif
  119. }
  120. void
  121. BasicSurfaceEvaluator::bgnclosedline( void )
  122. {
  123. #ifndef NDEBUG
  124. dprintf( "bgnclosedline\n" );
  125. #endif
  126. }
  127. void
  128. BasicSurfaceEvaluator::endclosedline( void )
  129. {
  130. #ifndef NDEBUG
  131. dprintf( "endclosedline\n" );
  132. #endif
  133. }
  134. void
  135. BasicSurfaceEvaluator::bgntfan( void )
  136. {
  137. #ifndef NDEBUG
  138. dprintf( "bgntfan\n" );
  139. #endif
  140. }
  141. void
  142. BasicSurfaceEvaluator::endtfan( void )
  143. {
  144. }
  145. void
  146. BasicSurfaceEvaluator::bgntmesh( void )
  147. {
  148. #ifndef NDEBUG
  149. dprintf( "bgntmesh\n" );
  150. #endif
  151. }
  152. void
  153. BasicSurfaceEvaluator::swaptmesh( void )
  154. {
  155. #ifndef NDEBUG
  156. dprintf( "swaptmesh\n" );
  157. #endif
  158. }
  159. void
  160. BasicSurfaceEvaluator::endtmesh( void )
  161. {
  162. #ifndef NDEBUG
  163. dprintf( "endtmesh\n" );
  164. #endif
  165. }
  166. void
  167. BasicSurfaceEvaluator::bgnqstrip( void )
  168. {
  169. #ifndef NDEBUG
  170. dprintf( "bgnqstrip\n" );
  171. #endif
  172. }
  173. void
  174. BasicSurfaceEvaluator::endqstrip( void )
  175. {
  176. #ifndef NDEBUG
  177. dprintf( "endqstrip\n" );
  178. #endif
  179. }