#2585 3D well log curves: Create visualization for a curve, random offsetted from a well path

This commit is contained in:
Rebecca Cox
2018-03-09 13:15:01 +01:00
parent 16551c05c4
commit 06504b6fef
11 changed files with 261 additions and 4 deletions

View File

@@ -63,6 +63,20 @@ void Rim3dWellLogCurveCollection::add3dWellLogCurve(Rim3dWellLogCurve* curve)
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::vector<Rim3dWellLogCurve*> Rim3dWellLogCurveCollection::vectorOf3dWellLogCurves() const
{
std::vector<Rim3dWellLogCurve*> curves;
for (auto& wellLogCurve : m_3dWellLogCurves)
{
curves.push_back(wellLogCurve);
}
return curves;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------