#include "osg/TexGen" #include "osg/Notify" using namespace osg; TexGen::TexGen() { _mode = OBJECT_LINEAR; _plane_s.set(1.0f, 0.0f, 0.0f, 0.0f); _plane_t.set(0.0f, 1.0f, 0.0f, 0.0f); _plane_r.set(0.0f, 0.0f, 1.0f, 0.0f); _plane_q.set(0.0f, 0.0f, 0.0f, 1.0f); } TexGen::~TexGen() { } void TexGen::setPlane(const Coord which, const Vec4& plane) { switch( which ) { case S : _plane_s = plane; break; case T : _plane_t = plane; break; case R : _plane_r = plane; break; case Q : _plane_q = plane; break; default : notify(WARN)<<"Error: invalid 'which' passed TexGen::setPlane("<<(unsigned int)which<<","<