2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2002-05-29 07:43:22 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
#ifndef OSG_CONVEXPLANEROCCLUDER
|
|
|
|
#define OSG_CONVEXPLANEROCCLUDER 1
|
|
|
|
|
|
|
|
#include <osg/ConvexPlanerPolygon>
|
2002-06-20 00:06:03 +08:00
|
|
|
#include <osg/Object>
|
2002-05-29 07:43:22 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
|
|
|
class OccluderVolume;
|
|
|
|
|
2002-06-03 23:39:41 +08:00
|
|
|
/** A class for representing convex clipping volumes made up.
|
2002-05-29 07:43:22 +08:00
|
|
|
* When adding planes, their normals should point inwards (into the volume) */
|
2002-06-20 00:06:03 +08:00
|
|
|
class SG_EXPORT ConvexPlanerOccluder : public Object
|
2002-05-29 07:43:22 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2002-06-20 00:06:03 +08:00
|
|
|
ConvexPlanerOccluder():Object() {}
|
|
|
|
ConvexPlanerOccluder(const ConvexPlanerOccluder& cpo,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
|
|
|
Object(cpo,copyop),
|
|
|
|
_occluder(cpo._occluder),
|
|
|
|
_holeList(cpo._holeList) {}
|
2002-05-29 07:43:22 +08:00
|
|
|
|
2002-06-20 00:06:03 +08:00
|
|
|
META_Object(osg,ConvexPlanerOccluder)
|
2002-05-29 07:43:22 +08:00
|
|
|
|
|
|
|
void setOccluder(const ConvexPlanerPolygon& cpp) { _occluder = cpp; }
|
|
|
|
|
|
|
|
ConvexPlanerPolygon& getOccluder() { return _occluder; }
|
|
|
|
|
|
|
|
const ConvexPlanerPolygon& getOccluder() const { return _occluder; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef std::vector<ConvexPlanerPolygon> HoleList;
|
|
|
|
|
|
|
|
void addHole(const ConvexPlanerPolygon& cpp) { _holeList.push_back(cpp); }
|
|
|
|
|
|
|
|
HoleList& getHoleList() { return _holeList; }
|
|
|
|
|
|
|
|
const HoleList& getHoleList() const { return _holeList; }
|
|
|
|
|
|
|
|
void computeAttributes();
|
|
|
|
|
|
|
|
void computeBound(BoundingBox& bb) const;
|
|
|
|
|
|
|
|
void computeBound(BoundingSphere& bs) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2002-06-20 00:06:03 +08:00
|
|
|
~ConvexPlanerOccluder() {}
|
2002-05-29 07:43:22 +08:00
|
|
|
|
|
|
|
ConvexPlanerPolygon _occluder;
|
|
|
|
HoleList _holeList;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace
|
|
|
|
|
|
|
|
#endif
|