Quake-III-Arena

Quake III Arena GPL Source Release
Log | Files | Refs

cbrushstub.cpp (2008B)


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