Geomech Range filters working

The algorithm for the IJK assignment now works on the simple test
example.
This commit is contained in:
Jacob Støren
2015-05-29 07:53:03 +02:00
parent 8a6e1ae65a
commit 51fd1b4de2
7 changed files with 305 additions and 81 deletions

View File

@@ -49,10 +49,16 @@ public:
private:
void generateStructGridData();
static FaceType findGridFace(cvf::Vec3d faceNormal);
void generateStructGridData();
int findElmIdxOfGridCornerClosestToOrigo();
int perpendicularFaceInDirection(cvf::Vec3f direction, int perpFaceIdx, int elmIdx);
RigFemPart* m_femPart;
std::vector<cvf::Vec3i> m_ijkPrElement;
cvf::Vec3st m_elmentIJKCounts;
RigFemPart* m_femPart;
};