mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3249 Refactoring pick event handling as preparations
This commit is contained in:
@@ -37,16 +37,18 @@ class Rim3dView;
|
||||
class RicViewerEventObject
|
||||
{
|
||||
public:
|
||||
RicViewerEventObject(cvf::Vec3d globalIntersectionPoint, const std::vector<std::pair<const cvf::Part*, cvf::uint>>& partAndTriangleIndexPairs, Rim3dView* view)
|
||||
: m_globalIntersectionPoint(globalIntersectionPoint),
|
||||
m_partAndTriangleIndexPairs(partAndTriangleIndexPairs),
|
||||
m_view(view)
|
||||
RicViewerEventObject(cvf::Vec3d globalIntersectionPoint,
|
||||
const std::vector<std::pair<const cvf::Part*,
|
||||
cvf::uint>>& partAndTriangleIndexPairs, Rim3dView* view)
|
||||
: m_globalIntersectionPoint(globalIntersectionPoint)
|
||||
, m_partAndTriangleIndexPairs(partAndTriangleIndexPairs)
|
||||
, m_view(view)
|
||||
{
|
||||
}
|
||||
|
||||
cvf::Vec3d m_globalIntersectionPoint;
|
||||
cvf::Vec3d m_globalIntersectionPoint;
|
||||
std::vector<std::pair<const cvf::Part*, cvf::uint>> m_partAndTriangleIndexPairs;
|
||||
Rim3dView* m_view;
|
||||
Rim3dView* m_view;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user