(#584) Linked Views: Use Range filter mapping only when ecl bbox is inside geom bbox

Set range and propfilter linking default off
This commit is contained in:
Jacob Støren
2015-10-24 11:56:15 +02:00
parent 0405584bb6
commit 658849eefc
3 changed files with 43 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ public:
void setFlipAxis(bool flipXAxis, bool flipYAxis);
void findIntersectingCells(const cvf::BoundingBox& inputBB, std::vector<size_t>* cellIndices) const;
cvf::BoundingBox boundingBox() const;
private:
void initAllSubGridsParentGridPointer();
void initAllSubCellsMainGridCellIndex();
@@ -87,7 +87,8 @@ private:
cvf::ref<RigFaultsPrCellAccumulator> m_faultsPrCellAcc;
cvf::Vec3d m_displayModelOffset;
mutable cvf::ref<cvf::BoundingBoxTree> m_cellSearchTree;
mutable cvf::ref<cvf::BoundingBoxTree> m_cellSearchTree;
mutable cvf::BoundingBox m_boundingBox;
bool m_flipXAxis;
bool m_flipYAxis;