Moved the LineSegment destructor from the header to the source to avoid
compilation problems under MingW.
This commit is contained in:
parent
fa86c5845d
commit
28214337a3
@ -63,7 +63,7 @@ class SG_EXPORT LineSegment : public Referenced
|
||||
|
||||
protected:
|
||||
|
||||
virtual ~LineSegment() {}
|
||||
virtual ~LineSegment();
|
||||
|
||||
static bool intersectAndClip(Vec3& s,Vec3& e,const BoundingBox& bb);
|
||||
|
||||
|
@ -14,6 +14,10 @@
|
||||
|
||||
using namespace osg;
|
||||
|
||||
LineSegment::~LineSegment()
|
||||
{
|
||||
}
|
||||
|
||||
bool LineSegment::intersectAndClip(Vec3& s,Vec3& e,const BoundingBox& bb)
|
||||
{
|
||||
// compate s and e against the xMin to xMax range of bb.
|
||||
|
Loading…
Reference in New Issue
Block a user