Removed debug output

p4#: 21887
This commit is contained in:
Jacob Støren
2013-06-12 10:52:46 +02:00
parent a9d2baf117
commit 03ad142261
7 changed files with 17 additions and 15 deletions

View File

@@ -235,16 +235,18 @@ void RivWellPathPartMgr::appendStaticGeometryPartsToModel(cvf::ModelBasicList* m
if (m_needsTransformUpdate)
{
printf("G");
//printf("G");
buildWellPathParts(displayModelOffset, characteristicCellSize, boundingBox);
}
else
{
printf("s");
//printf("s");
}
if (m_wellBranches.size() < 1)
printf("RivWellPathPartMgr::appendStaticGeometryPartsToModel: There are no well branches in well \"%s\"!!!\n", (const char*) m_rimWellPath->name().toLocal8Bit());
{
//printf("RivWellPathPartMgr::appendStaticGeometryPartsToModel: There are no well branches in well \"%s\"!!!\n", (const char*) m_rimWellPath->name().toLocal8Bit());
}
std::list<RivPipeBranchData>::iterator it;
for (it = m_wellBranches.begin(); it != m_wellBranches.end(); it++)

View File

@@ -43,7 +43,7 @@ public:
void setScaleTransform(cvf::Transform * scaleTransform);
void scheduleGeometryRegen() { m_needsTransformUpdate = true; printf("R"); }
void scheduleGeometryRegen() { m_needsTransformUpdate = true; }//printf("R"); }
void appendStaticGeometryPartsToModel(cvf::ModelBasicList* model, cvf::Vec3d displayModelOffset, double characteristicCellSize, cvf::BoundingBox boundingBox);