| 49 | \*---------------------------------------------------------------------------*/ |
| 50 | |
| 51 | class midPointSet |
| 52 | : |
| 53 | public faceOnlySet |
| 54 | { |
| 55 | // Private Member Functions |
| 56 | |
| 57 | void genSamples(); |
| 58 | |
| 59 | |
| 60 | public: |
| 61 | |
| 62 | //- Runtime type information |
| 63 | TypeName("midPoint"); |
| 64 | |
| 65 | |
| 66 | // Constructors |
| 67 | |
| 68 | //- Construct from components |
| 69 | midPointSet |
| 70 | ( |
| 71 | const word& name, |
| 72 | const polyMesh& mesh, |
| 73 | const meshSearch& searchEngine, |
| 74 | const word& axis, |
| 75 | const point& start, |
| 76 | const point& end |
| 77 | ); |
| 78 | |
| 79 | //- Construct from dictionary |
| 80 | midPointSet |
| 81 | ( |
| 82 | const word& name, |
| 83 | const polyMesh& mesh, |
| 84 | const meshSearch& searchEngine, |
| 85 | const dictionary& dict |
| 86 | ); |
| 87 | |
| 88 | |
| 89 | //- Destructor |
| 90 | virtual ~midPointSet(); |
| 91 | }; |
| 92 | |
| 93 | |
| 94 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |