]> git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DWinding.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / DWinding.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 // DWinding.h: interface for the DWinding class.
21 //
22 //////////////////////////////////////////////////////////////////////
23
24 #if !defined( AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_ )
25 #define AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_
26
27 #if _MSC_VER > 1000
28 #pragma once
29 #endif // _MSC_VER > 1000
30
31 #include "mathlib.h"
32
33 class DPlane;
34
35 class DWinding {
36 public:
37     DWinding();
38
39     virtual ~DWinding();
40
41     void AllocWinding(int points);
42
43     bool ChopWinding(DPlane *chopPlane);
44
45     bool ChopWindingInPlace(DPlane *chopPlane, vec_t ON_EPSILON);
46
47     void ClipWindingEpsilon(DPlane *chopPlane, vec_t epsilon, DWinding **front, DWinding **back);
48
49     void CheckWinding();
50
51     void WindingCentre(vec3_t centre);
52
53     void WindingBounds(vec3_t mins, vec3_t maxs);
54
55     void RemoveColinearPoints();
56
57     DWinding *ReverseWinding();
58
59     DWinding *CopyWinding();
60
61     DPlane *WindingPlane();
62
63     int WindingOnPlaneSide(vec3_t normal, vec_t dist);
64
65     vec_t WindingArea();
66
67 //      members
68     int numpoints;
69     vec3_t *p;
70     vec3_t clr;
71 };
72
73 const int MAX_POINTS_ON_WINDING = 64;
74
75 const double ON_EPSILON = 0.01;
76
77 #endif // !defined(AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_)