From 8b527ac37854dee574ae82db5b8213ae038e921d Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 24 Jun 2016 12:34:20 +0100 Subject: [PATCH] Added initializers --- src/osgManipulator/Command.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/osgManipulator/Command.cpp b/src/osgManipulator/Command.cpp index b003fc23a..8aee4273b 100644 --- a/src/osgManipulator/Command.cpp +++ b/src/osgManipulator/Command.cpp @@ -89,7 +89,11 @@ MotionCommand* TranslateInPlaneCommand::createCommandInverse() // Scale 1D command. // -Scale1DCommand::Scale1DCommand() : _scale(1.0) +Scale1DCommand::Scale1DCommand(): + _scale(1.0), + _scaleCenter(0.0), + _referencePoint(0.0), + _minScale(0.0) { }