pre-proto - Some cleanup and adding function for getting access to one RigFractureData

This commit is contained in:
astridkbjorke
2017-04-03 14:33:14 +02:00
parent 8255a3aaa3
commit 153bc57dfb
5 changed files with 29 additions and 23 deletions

View File

@@ -69,9 +69,14 @@ public:
void setFractureData(const std::vector<RigFractureData>& data);
const std::vector<RigFractureData>& fractureData() const; //Access frac data
RigFractureData* fractureData(size_t eclipseCellIndex);
std::vector<RigFractureData> m_fractureData;
private:
std::vector<cvf::uint> m_triangleIndices;
std::vector<cvf::Vec3f> m_nodeCoords;
std::vector<RigFractureData> m_fractureData;
};