(#166) Added clipping of the clipped cells, with fixes of errors.

This commit is contained in:
Jacob Støren
2015-11-17 17:21:53 +01:00
parent 5840f165ea
commit 40713a3c84
4 changed files with 217 additions and 73 deletions

View File

@@ -57,12 +57,13 @@ public:
private:
void calculateArrays();
void adjustPolyline();
cvf::ref<cvf::Vec3fArray> m_triangleVxes;
std::vector<size_t> m_triangleToCellIdxMap;
cvf::cref<RigMainGrid> m_mainGrid;
std::vector<cvf::Vec3d> m_polyLine;
cvf::Vec3d m_extrusionDirection;
std::vector<cvf::Vec3d> m_adjustedPolyline;
};