Added initializer

This commit is contained in:
Robert Osfield
2016-06-24 12:24:28 +01:00
parent 6db7d9e5d7
commit 90f8c7c51b

View File

@@ -372,11 +372,14 @@ bool SphereProjector::isPointInFront(const PointerInfo& pi, const osg::Matrix& l
}
SpherePlaneProjector::SpherePlaneProjector()
SpherePlaneProjector::SpherePlaneProjector():
_onSphere(false)
{
}
SpherePlaneProjector::SpherePlaneProjector(osg::Sphere* sphere) : SphereProjector(sphere)
SpherePlaneProjector::SpherePlaneProjector(osg::Sphere* sphere) :
SphereProjector(sphere),
_onSphere(false)
{
}