diff --git a/src/osgManipulator/Projector.cpp b/src/osgManipulator/Projector.cpp index 216ac6278..79c417523 100644 --- a/src/osgManipulator/Projector.cpp +++ b/src/osgManipulator/Projector.cpp @@ -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) { }