mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1040 Established basis for fracture visualization
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
#include "cvfBase.h"
|
||||
#include "cvfObject.h"
|
||||
#include "cvfMath.h"
|
||||
@@ -25,7 +26,6 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
//==================================================================================================
|
||||
///
|
||||
//==================================================================================================
|
||||
@@ -34,6 +34,13 @@ class RigFracture : public cvf::Object
|
||||
public:
|
||||
RigFracture();
|
||||
|
||||
void setGeometry(const std::vector<cvf::uint>& polygonIndices, const std::vector<cvf::Vec3f>& nodeCoords);
|
||||
|
||||
const std::vector<cvf::uint>& polygonIndices() const;
|
||||
const std::vector<cvf::Vec3f>& nodeCoords() const;
|
||||
|
||||
private:
|
||||
std::vector<cvf::uint> m_polygonIndices;
|
||||
std::vector<cvf::Vec3f> m_nodeCoords;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user