]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DPlane.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / DPlane.h
1 /*
2    BobToolz plugin for GtkRadiant
3    Copyright (C) 2001 Gordon Biggans
4
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 // DPlane.h: interface for the DPlane class.
21 //
22 //////////////////////////////////////////////////////////////////////
23
24 #if !defined( AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_ )
25 #define AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_
26
27 #include "DPoint.h"
28
29 #define FACE_DETAIL 0x8000000
30
31 #if _MSC_VER > 1000
32 #pragma once
33 #endif // _MSC_VER > 1000
34
35 class DWinding;
36
37 class DPlane
38 {
39 public:
40 DPlane( vec3_t va, vec3_t vb, vec3_t vc, const char* textureName, bool bDetail );
41 void ScaleTexture();
42 DWinding* BaseWindingForPlane();
43
44 void Rebuild();
45
46 bool AddToBrush_t( brush_t *brush );
47 bool operator !=( DPlane& other );
48 bool operator ==( DPlane& other );
49
50 bool IsRedundant( list<DPoint*>& pointList );
51 bool PlaneIntersection( DPlane* pl1, DPlane* pl2, vec3_t out );;
52
53 vec_t DistanceToPoint( vec3_t pnt );
54
55 DPlane( vec3_t va, vec3_t vb, vec3_t vc, _QERFaceData* texData );
56 DPlane() { }
57 virtual ~DPlane();
58
59 bool m_bChkOk;
60 _QERFaceData texInfo;
61 vec3_t points[3];           // djbob:do we really need these any more?
62 vec3_t normal;
63 float _d;
64 };
65
66 //typedef CList<DPlane*, DPlane*> DPlaneList;
67 #endif // !defined(AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_)