source: trunk/VUT/GtpVisibilityPreprocessor/src/Polygon3.h @ 396

Revision 396, 3.7 KB checked in by mattausch, 19 years ago (diff)

fixed bug in bsp geometry construction

Line 
1#ifndef _Polygon3_h__
2#define _Polygon3_h__
3
4
5//#include <iostream>
6//#include <math.h>
7//#include "common.h"
8#include "Containers.h"
9#include "Mesh.h"
10#include <iomanip>
11
12class Polygon3;
13class Plane3;
14class Face;
15class Intersectable;
16class AxisAlignedBox3;
17class Ray;
18//typedef Vertex3 Vector3;
19
20/** Class representing a planar convex polygon in 3d.
21*/
22class Polygon3
23{
24public:
25        enum {BACK_SIDE, FRONT_SIDE, SPLIT, COINCIDENT};
26
27        /** Default constructor creating an empty polygon.
28        */
29        Polygon3();
30        /** Constructor creating a polygon from the vertices.
31        */
32        Polygon3(const VertexContainer &vertices);
33        /** Creates a polygon and stores pointer to parent mesh
34                instance.
35        */
36        Polygon3(MeshInstance *parent);
37
38        // creates an "infinite" polygon from this plane
39        //Polygon3(Plane3 plane);
40        /** Copies all the vertices of the face.
41        */
42        Polygon3(Face *face, Mesh *parentMesh);
43       
44        /** Returns supporting plane of this polygon.
45        */
46        Plane3 GetSupportingPlane() const;
47
48        /** Splits polygon.
49                @param partition the split plane
50                @param front returns the front the front polygon
51                @param back returns the back polygon
52                @param splitPts returns the split points
53        */
54        void Split(const Plane3 &partition,
55                           Polygon3 &front,
56                           Polygon3 &back,
57                           VertexContainer &splitPts);
58
59        /** Returns the area of this polygon.
60        */
61        float GetArea() const;
62
63        /** Classify polygon with respect to the plane.
64            @returns one of BACK_SIDE, FRONT_SIDE, SPLIT, COINCIDENT
65        */
66        int ClassifyPlane(const Plane3 &plane) const;
67
68        /** Side of the polygon with respect to the plane.
69                @returns 1 if on front side, -1 if on back side, 0 else.
70        */
71        int Side(const Plane3 &plane) const;
72
73        /** Scales the polygon about its center
74        */
75        void Scale(const float scale);
76       
77        /** Computes the center of mass of the polygon
78         */
79        Vector3 Center() const;
80        /** Checks if the polygon is valid, i.e., not degenerated.
81                @returns true if polygon is valid.
82        */
83        bool Valid() const;
84
85        /** Returns the surface normal.
86        */
87        Vector3 GetNormal() const;
88
89        /** Casts ray to polygon.
90        */
91        int CastRay(const Ray &ray, float &t, const float nearestT);
92
93       
94        /** The piercing rays of the polygon are inherited by the child fragments
95                @parm front_piece the front fragment inheriting the front rays
96                @param back_piece the back fragment inheriting the back rays
97        */
98        void InheritRays(Polygon3 &front_piece,
99                                         Polygon3 &back_piece) const;
100
101        /** Returns new polygon with reverse orientation.
102        */
103        Polygon3 *CreateReversePolygon() const;
104
105        /// vertices are connected in counterclockwise order.
106        VertexContainer mVertices;
107
108        /// we can also store materials with polygons
109        Material *mMaterial;
110       
111        /// pointer to the mesh instance this polygon is derived from
112        MeshInstance *mParent;
113
114        /// Rays piercing this polygon
115        RayContainer mPiercingRays;
116
117
118        /** Includes polygons to axis aligned box.
119        */
120        static void IncludeInBox(const PolygonContainer &polys, AxisAlignedBox3 &box);
121
122        /** Classify polygons with respect to the plane.
123            @returns one of BACK_SIDE, FRONT_SIDE, SPLIT, COINCIDENT
124        */
125        static int ClassifyPlane(const PolygonContainer &polys, const Plane3 &plane);
126
127
128        /** Counts the number of different intersectables associated with the polygons.
129        */
130        static int ParentObjectsSize(const PolygonContainer &polys);
131
132        static float GetArea(const PolygonContainer &cell);
133};
134
135// Overload << operator for C++-style output
136inline ostream&
137operator<< (ostream &s, const Polygon3 &A)
138{
139        VertexContainer::const_iterator it;
140
141        //s << setprecision(6) << "Polygon:\n";
142        for (it = A.mVertices.begin(); it != A.mVertices.end(); ++it)
143                s << *it << endl;
144       
145        return s;
146}
147
148
149#endif
Note: See TracBrowser for help on using the repository browser.