#2591 3D well log curves: Increase size of offset between pipe and plot

This commit is contained in:
Rebecca Cox 2018-03-21 13:46:03 +01:00
parent a1d82fcffa
commit e688b3de36
2 changed files with 3 additions and 3 deletions

View File

@ -415,7 +415,7 @@ double Riv3dWellLogCurveGeometryGenerator::wellPathCenterToPlotStartOffset() con
{
double cellSize = m_gridView->ownerCase()->characteristicCellSize();
return m_wellPath->wellPathRadius(cellSize) * 1.2;
return m_wellPath->wellPathRadius(cellSize) * 2;
}
//--------------------------------------------------------------------------------------------------
@ -423,7 +423,7 @@ double Riv3dWellLogCurveGeometryGenerator::wellPathCenterToPlotStartOffset() con
//--------------------------------------------------------------------------------------------------
double Riv3dWellLogCurveGeometryGenerator::gridWidth() const
{
return 100;
return 400;
}
//--------------------------------------------------------------------------------------------------

View File

@ -551,7 +551,7 @@ void RivWellPathPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList*
if (m_rimWellPath->rim3dWellLogCurveCollection()->showGrid())
{
m_3dWellLogCurvePartMgr->appendGridToModel(model, displayCoordTransform, wellPathClipBoundingBox, 200);
m_3dWellLogCurvePartMgr->appendGridToModel(model, displayCoordTransform, wellPathClipBoundingBox, 800);
}
}