///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) Statoil ASA // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RivIntersectionBoxGeometryGenerator.h" #include "cvfBase.h" #include "cvfObject.h" namespace cvf { class ModelBasicList; class Transform; class Part; } class RigMainGrid; class RigResultAccessor; class RimCellEdgeColors; class RimEclipseCellColors; class RimIntersectionBox; //================================================================================================== /// /// //================================================================================================== class RivIntersectionBoxPartMgr : public cvf::Object { public: explicit RivIntersectionBoxPartMgr(const RimIntersectionBox* intersectionBox); void applySingleColorEffect(); void updateCellResultColor(size_t timeStepIndex); void appendNativeCrossSectionFacesToModel(cvf::ModelBasicList* model, cvf::Transform* scaleTransform); void appendMeshLinePartsToModel(cvf::ModelBasicList* model, cvf::Transform* scaleTransform); private: void updatePartEffect(); void generatePartGeometry(); cvf::ref createHexGridInterface(); private: const RimIntersectionBox* m_rimIntersectionBox; cvf::Color3f m_defaultColor; cvf::ref m_intersectionBoxFaces; cvf::ref m_intersectionBoxGridLines; cvf::ref m_intersectionBoxFacesTextureCoords; cvf::ref m_intersectionBoxGenerator; };