ENH: wallBoundedStreamLine: -store one value per location -optional tracklength specification

This commit is contained in:
mattijs
2012-02-07 11:35:18 +00:00
parent 18e2c53007
commit 0dbdea4781
7 changed files with 88 additions and 32 deletions

View File

@ -73,6 +73,7 @@ public:
const PtrList<interpolation<vector> >& vvInterp_;
const label UIndex_;
const bool trackForward_;
const scalar trackLength_;
const PackedBoolList& isWallPatch_;
@ -90,6 +91,7 @@ public:
const PtrList<interpolation<vector> >& vvInterp,
const label UIndex,
const bool trackForward,
const scalar trackLength,
const PackedBoolList& isWallPatch,
DynamicList<List<point> >& allPositions,
@ -105,6 +107,7 @@ public:
vvInterp_(vvInterp),
UIndex_(UIndex),
trackForward_(trackForward),
trackLength_(trackLength),
isWallPatch_(isWallPatch),
allPositions_(allPositions),