34 lines
431 B
C++
34 lines
431 B
C++
#include <osg/GL>
|
|
#include <osg/LineStipple>
|
|
#include <osg/Notify>
|
|
|
|
using namespace osg;
|
|
|
|
|
|
LineStipple::LineStipple()
|
|
{
|
|
_factor = 1;
|
|
_pattern = 0xffff;
|
|
}
|
|
|
|
|
|
LineStipple::~LineStipple()
|
|
{
|
|
}
|
|
|
|
void LineStipple::setFactor(const int factor)
|
|
{
|
|
_factor = factor;
|
|
}
|
|
|
|
void LineStipple::setPattern(const unsigned short pattern)
|
|
{
|
|
_pattern = pattern;
|
|
}
|
|
|
|
void LineStipple::apply(State&) const
|
|
{
|
|
glLineStipple(_factor, _pattern);
|
|
}
|
|
|