More clean up for synch with 0.8.42
This commit is contained in:
98
src/osg/ClipPlane.cpp
Normal file
98
src/osg/ClipPlane.cpp
Normal file
@@ -0,0 +1,98 @@
|
||||
#include <osg/ClipPlane>
|
||||
#include <osg/Notify>
|
||||
|
||||
using namespace osg;
|
||||
|
||||
ClipPlane::ClipPlane()
|
||||
{
|
||||
_clipPlane = new double[4];
|
||||
_clipPlane[0] = 0.0;
|
||||
_clipPlane[1] = 0.0;
|
||||
_clipPlane[2] = 0.0;
|
||||
_clipPlane[3] = 0.0;
|
||||
_clipPlaneNum = 0;
|
||||
}
|
||||
|
||||
|
||||
ClipPlane::~ClipPlane()
|
||||
{
|
||||
delete _clipPlane;
|
||||
}
|
||||
|
||||
void ClipPlane::setClipPlane(const Vec4& plane)
|
||||
{
|
||||
_clipPlane[0] = plane[0];
|
||||
_clipPlane[1] = plane[1];
|
||||
_clipPlane[2] = plane[2];
|
||||
_clipPlane[3] = plane[3];
|
||||
}
|
||||
|
||||
void ClipPlane::setClipPlane(const Plane& plane)
|
||||
{
|
||||
_clipPlane[0] = plane[0];
|
||||
_clipPlane[1] = plane[1];
|
||||
_clipPlane[2] = plane[2];
|
||||
_clipPlane[3] = plane[3];
|
||||
}
|
||||
|
||||
void ClipPlane::setClipPlane(const double* plane)
|
||||
{
|
||||
if (plane)
|
||||
{
|
||||
_clipPlane[0] = plane[0];
|
||||
_clipPlane[1] = plane[1];
|
||||
_clipPlane[2] = plane[2];
|
||||
_clipPlane[3] = plane[3];
|
||||
}
|
||||
else
|
||||
{
|
||||
notify(WARN)<<"Warning: ClipPlane::setClipPlane() passed NULL plane array, ignoring operation."<<endl;
|
||||
}
|
||||
}
|
||||
|
||||
void ClipPlane::getClipPlane(Vec4& plane) const
|
||||
{
|
||||
plane[0] = (float)_clipPlane[0];
|
||||
plane[1] = (float)_clipPlane[1];
|
||||
plane[2] = (float)_clipPlane[2];
|
||||
plane[3] = (float)_clipPlane[3];
|
||||
}
|
||||
|
||||
void ClipPlane::getClipPlane(Plane& plane) const
|
||||
{
|
||||
plane[0] = _clipPlane[0];
|
||||
plane[1] = _clipPlane[1];
|
||||
plane[2] = _clipPlane[2];
|
||||
plane[3] = _clipPlane[3];
|
||||
}
|
||||
|
||||
void ClipPlane::getClipPlane(double* plane) const
|
||||
{
|
||||
if (plane)
|
||||
{
|
||||
plane[0] = _clipPlane[0];
|
||||
plane[1] = _clipPlane[1];
|
||||
plane[2] = _clipPlane[2];
|
||||
plane[3] = _clipPlane[3];
|
||||
}
|
||||
else
|
||||
{
|
||||
notify(WARN)<<"Warning: ClipPlane::getClipPlane() passed NULL plane array, ignoring operation."<<endl;
|
||||
}
|
||||
}
|
||||
|
||||
void ClipPlane::setClipPlaneNum(const unsigned int num)
|
||||
{
|
||||
_clipPlaneNum = num;
|
||||
}
|
||||
|
||||
const unsigned int ClipPlane::getClipPlaneNum() const
|
||||
{
|
||||
return _clipPlaneNum;
|
||||
}
|
||||
|
||||
void ClipPlane::apply(State&) const
|
||||
{
|
||||
glClipPlane((GLenum)(GL_CLIP_PLANE0+_clipPlaneNum),_clipPlane);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user