cbrushstub.cpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. ===========================================================================
  3. Copyright (C) 1999-2005 Id Software, Inc.
  4. This file is part of Quake III Arena source code.
  5. Quake III Arena source code is free software; you can redistribute it
  6. and/or modify it under the terms of the GNU General Public License as
  7. published by the Free Software Foundation; either version 2 of the License,
  8. or (at your option) any later version.
  9. Quake III Arena source code is distributed in the hope that it will be
  10. useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Foobar; if not, write to the Free Software
  15. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. ===========================================================================
  17. */
  18. #include "stdafx.h"
  19. #include "qe3.h"
  20. void Curve_Invert (void)
  21. {
  22. }
  23. void Curve_MakeCurvedBrush (qboolean negative, qboolean top, qboolean bottom,
  24. qboolean s1, qboolean s2, qboolean s3, qboolean s4)
  25. {
  26. }
  27. void Curve_BuildPoints (brush_t *b)
  28. {
  29. }
  30. void Curve_CameraDraw (brush_t *b)
  31. {
  32. }
  33. void Curve_XYDraw (brush_t *b)
  34. {
  35. }
  36. void Curve_WriteFile (char *name)
  37. {
  38. }
  39. void Curve_StripFakePlanes( brush_t *b )
  40. {
  41. }
  42. void Curve_AddFakePlanes( brush_t *b )
  43. {
  44. }
  45. void Patch_BrushToMesh(){};
  46. void Patch_GenericMesh(int nWidth, int nHeight, int nOrientation){};
  47. void Patch_ReadFile (char *name){};
  48. void Patch_WriteFile (char *name){};
  49. void Patch_BuildPoints (brush_t *b){};
  50. void Patch_Move(int n, const vec3_t vMove){};
  51. void Patch_ApplyMatrix(int n, const vec3_t vOrigin, const vec3_t vMatrix[3]){};
  52. void Patch_EditPatch(int n){};
  53. void Patch_Deselect(){};
  54. void Patch_Delete(int n){};
  55. void Patch_Select(int n){};
  56. void Patch_Scale(int n, const vec3_t vOrigin, const vec3_t vAmt){};
  57. void Patch_Cleanup(){};
  58. bool g_bShowPatchBounds;
  59. bool g_bPatchWireFrame;