ResInsight/ApplicationLibCode/ModelVisualization/Intersections/RivBoxIntersectionPartMgr.h

82 lines
2.4 KiB
C
Raw Normal View History

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) Statoil ASA
2018-09-21 04:43:03 -05:00
//
// 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.
2018-09-21 04:43:03 -05:00
//
// 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.
2018-09-21 04:43:03 -05:00
//
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "RivBoxIntersectionGeometryGenerator.h"
#include "cvfObject.h"
namespace cvf
{
2018-09-21 04:43:03 -05:00
class ModelBasicList;
class Transform;
class Part;
class ScalarMapper;
2018-09-21 04:43:03 -05:00
} // namespace cvf
class RigMainGrid;
class RigResultAccessor;
class RivTernaryScalarMapper;
class RivIntersectionGeometryGeneratorInterface;
class RimCellEdgeColors;
class RimEclipseCellColors;
class RimBoxIntersection;
class RimIntersection;
class RimEclipseView;
class RimGeoMechView;
class RimEclipseResultDefinition;
class RimGeoMechResultDefinition;
//==================================================================================================
///
///
//==================================================================================================
class RivBoxIntersectionPartMgr : public cvf::Object
{
public:
explicit RivBoxIntersectionPartMgr( RimBoxIntersection* intersectionBox );
void applySingleColorEffect();
void updateCellResultColor( int timeStepIndex );
void appendNativeIntersectionFacesToModel( cvf::ModelBasicList* model, cvf::Transform* scaleTransform );
void appendMeshLinePartsToModel( cvf::ModelBasicList* model, cvf::Transform* scaleTransform );
const RivIntersectionGeometryGeneratorInterface* intersectionGeometryGenerator() const;
2023-06-19 06:48:44 -05:00
void generatePartGeometry( cvf::UByteArray* visibleCells );
private:
void updatePartEffect();
private:
RimBoxIntersection* m_rimIntersectionBox;
2018-09-21 04:43:03 -05:00
cvf::Color3f m_defaultColor;
2018-09-21 04:43:03 -05:00
cvf::ref<cvf::Part> m_intersectionBoxFaces;
cvf::ref<cvf::Part> m_intersectionBoxGridLines;
cvf::ref<cvf::Vec2fArray> m_intersectionBoxFacesTextureCoords;
cvf::ref<RivBoxIntersectionGeometryGenerator> m_intersectionBoxGenerator;
};