mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Refactor: improve interface for finding intersecting cells.
This commit is contained in:
@@ -71,8 +71,7 @@ int RimWellIADataAccess::elementIndex( cvf::Vec3d position )
|
||||
|
||||
auto part = m_caseData->femParts()->part( 0 );
|
||||
|
||||
std::vector<size_t> closeElements;
|
||||
part->findIntersectingElementIndices( bb, &closeElements );
|
||||
std::vector<size_t> closeElements = part->findIntersectingElementIndices( bb );
|
||||
if ( closeElements.empty() ) return -1;
|
||||
|
||||
for ( auto elmIdx : closeElements )
|
||||
|
||||
Reference in New Issue
Block a user