Added initializer

This commit is contained in:
Robert Osfield 2016-06-24 12:26:16 +01:00
parent 90f8c7c51b
commit cda61d92b7

View File

@ -559,11 +559,14 @@ bool CylinderProjector::isPointInFront(const PointerInfo& pi, const osg::Matrix&
return true;
}
CylinderPlaneProjector::CylinderPlaneProjector()
CylinderPlaneProjector::CylinderPlaneProjector():
_parallelPlane(false)
{
}
CylinderPlaneProjector::CylinderPlaneProjector(osg::Cylinder* cylinder) : CylinderProjector(cylinder), _parallelPlane(false)
CylinderPlaneProjector::CylinderPlaneProjector(osg::Cylinder* cylinder):
CylinderProjector(cylinder),
_parallelPlane(false)
{
}