Added initializers
This commit is contained in:
parent
0d427ed157
commit
601884131e
@ -152,6 +152,7 @@ class OSGGA_EXPORT StandardManipulator : public CameraManipulator
|
||||
bool _isAnimating;
|
||||
double _startTime;
|
||||
double _phase;
|
||||
|
||||
AnimationData();
|
||||
void start( const double startTime );
|
||||
};
|
||||
|
@ -841,8 +841,11 @@ bool StandardManipulator::startAnimationByMousePointerIntersection(
|
||||
}
|
||||
|
||||
|
||||
StandardManipulator::AnimationData::AnimationData()
|
||||
:_isAnimating( false )
|
||||
StandardManipulator::AnimationData::AnimationData():
|
||||
_animationTime(0.0),
|
||||
_isAnimating(false),
|
||||
_startTime(0.0),
|
||||
_phase(0.0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user