Create only one label per fault

Use a separate code path for fault labels to avoid multiple labels on
different sub parts of a fault
This commit is contained in:
Magne Sjaastad
2013-12-18 12:18:15 +01:00
parent ae4175dd15
commit bc4ef17409
7 changed files with 114 additions and 6 deletions

View File

@@ -171,3 +171,14 @@ void RivReservoirPartMgr::appendFaultPartsToModel(cvf::ModelBasicList* model)
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RivReservoirPartMgr::appendFaultLabelPartsToModel(cvf::ModelBasicList* model)
{
if (m_faultsPartMgr.notNull())
{
m_faultsPartMgr->appendLabelPartsToModel(model);
}
}