Removed debug output

This commit is contained in:
Jacob Støren 2015-12-14 09:53:59 +01:00
parent f436d882b5
commit 6db74465b6
2 changed files with 4 additions and 4 deletions

View File

@ -811,7 +811,7 @@ bool RifEclipseInputFileTools::readFaultsAndParseIncludeStatementsRecursively(QF
QFile includeFile(absoluteFilename); QFile includeFile(absoluteFilename);
if (includeFile.open(QFile::ReadOnly)) if (includeFile.open(QFile::ReadOnly))
{ {
qDebug() << "Found include statement, and start parsing of\n " << absoluteFilename; //qDebug() << "Found include statement, and start parsing of\n " << absoluteFilename;
if (!readFaultsAndParseIncludeStatementsRecursively(includeFile, 0, faults, filenamesWithFaults, isEditKeywordDetected)) if (!readFaultsAndParseIncludeStatementsRecursively(includeFile, 0, faults, filenamesWithFaults, isEditKeywordDetected))
{ {
@ -875,7 +875,7 @@ void RifEclipseInputFileTools::readFaults(QFile &data, qint64 filePos, cvf::Coll
return; return;
} }
qDebug() << "Reading faults from\n " << data.fileName(); // qDebug() << "Reading faults from\n " << data.fileName();
RigFault* fault = NULL; RigFault* fault = NULL;

View File

@ -1039,7 +1039,7 @@ void caf::Viewer::updateParallelProjectionCameraPosFromPointOfInterestMove(const
double orthoHeight = camera->frontPlaneFrustumHeight(); double orthoHeight = camera->frontPlaneFrustumHeight();
Trace::show(String::number(orthoHeight)); //Trace::show(String::number(orthoHeight));
double neededDistToFocusPlane = calculateDistToPlaneOfInterest(m_cameraFieldOfViewYDeg, orthoHeight); double neededDistToFocusPlane = calculateDistToPlaneOfInterest(m_cameraFieldOfViewYDeg, orthoHeight);
@ -1052,7 +1052,7 @@ void caf::Viewer::updateParallelProjectionCameraPosFromPointOfInterestMove(const
Vec3d newEye = eye + (existingDistToFocusPlane - neededDistToFocusPlane) * camDir; Vec3d newEye = eye + (existingDistToFocusPlane - neededDistToFocusPlane) * camDir;
Trace::show(String::number(newEye.x()) + ", " + String::number(newEye.y()) + ", " +String::number(newEye.z())); //Trace::show(String::number(newEye.x()) + ", " + String::number(newEye.y()) + ", " +String::number(newEye.z()));
camera->setFromLookAt(newEye, newEye + 10.0*camDir, up); camera->setFromLookAt(newEye, newEye + 10.0*camDir, up);
} }