Skip to content
Snippets Groups Projects
Commit 3f0f5986 authored by Jan Möbius's avatar Jan Möbius
Browse files

Fixed warning about uninitialized variable


git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@11350 383ad7c9-94d9-4d36-a494-682f7c89f535
parent fd6bd8a4
No related branches found
No related tags found
No related merge requests found
......@@ -624,8 +624,8 @@ void DataControlPlugin::slotZoomTo(){
//compute boundingBox
bool firstRound = true;
ACG::Vec3d bbmin;
ACG::Vec3d bbmax;
ACG::Vec3d bbmin(FLT_MAX,FLT_MAX,FLT_MAX);
ACG::Vec3d bbmax(FLT_MIN,FLT_MIN,FLT_MIN);
for (int i=0; i < children.size(); i++){
BaseObjectData* child = dynamic_cast< BaseObjectData* > (children[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment