]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DPlane.h
Merge remote-tracking branch 'ttimo/master'
[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 <list>
28 #include "ibrush.h"
29 #include "string/string.h"
30 #include "mathlib.h"
31
32 class Brush;
33 class DPoint;
34
35 #define FACE_DETAIL 0x8000000
36
37 #if _MSC_VER > 1000
38 #pragma once
39 #endif // _MSC_VER > 1000
40
41 class DWinding;
42
43 class DPlane
44 {
45 public:
46 DPlane( const vec3_t va, const vec3_t vb, const vec3_t vc, const char* textureName, bool bDetail );
47 void ScaleTexture();
48 DWinding* BaseWindingForPlane();
49
50 void Rebuild();
51
52 bool AddToBrush( scene::Node& brush );
53 bool operator !=( DPlane& other );
54 bool operator ==( DPlane& other );
55
56 bool IsRedundant( std::list<DPoint*>& pointList );
57 bool PlaneIntersection( DPlane* pl1, DPlane* pl2, vec3_t out );;
58
59 vec_t DistanceToPoint( vec3_t pnt );
60
61 DPlane( const vec3_t va, const vec3_t vb, const vec3_t vc, const _QERFaceData* texData );
62 DPlane() { }
63 virtual ~DPlane();
64
65 bool m_bChkOk;
66 _QERFaceData texInfo;
67 CopiedString m_shader;
68 vec3_t points[3];           // djbob:do we really need these any more?
69 vec3_t normal;
70 float _d;
71 };
72
73 //typedef CList<DPlane*, DPlane*> DPlaneList;
74 #endif // !defined(AFX_DPLANE_H__FC37C021_F0A1_11D4_ACF7_004095A18133__INCLUDED_)