]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/bobtoolz/DWinding.h
* applied patch by StefanV (from mailinglist) that fixes an error in config.py (broke...
[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 class DPlane;
32
33 class DWinding  
34 {
35 public:
36         DWinding();
37         virtual ~DWinding();
38
39         void AllocWinding(int points);
40
41         bool ChopWinding(DPlane* chopPlane);
42         bool ChopWindingInPlace(DPlane* chopPlane, vec_t ON_EPSILON);
43         void ClipWindingEpsilon(DPlane* chopPlane, vec_t epsilon, DWinding** front, DWinding** back);
44
45         void CheckWinding();
46         void WindingCentre(vec3_t centre);
47         void WindingBounds(vec3_t mins, vec3_t maxs);
48         void RemoveColinearPoints();
49
50         DWinding* ReverseWinding();
51         DWinding* CopyWinding();
52         DPlane* WindingPlane();
53
54         int WindingOnPlaneSide(vec3_t normal, vec_t dist);
55
56         vec_t WindingArea();
57
58 //      members
59         int             numpoints;
60         vec3_t* p;
61   vec3_t  clr;
62 };
63
64 #define MAX_POINTS_ON_WINDING   64
65
66 #define ON_EPSILON      0.01
67
68 #endif // !defined(AFX_DWINDING_H__35B2C524_F0A7_11D4_ACF7_004095A18133__INCLUDED_)