| 104 | |
| 105 | //- Track the points used by the part and map global to local indices |
| 106 | class localPoints |
| 107 | { |
| 108 | public: |
| 109 | //- Number of points used |
| 110 | label nPoints; |
| 111 | |
| 112 | //- Map global to local indices |
| 113 | labelList list; |
| 114 | |
| 115 | //- Null constructor |
| 116 | localPoints() |
| 117 | : |
| 118 | nPoints(0), |
| 119 | list(0) |
| 120 | {} |
| 121 | |
| 122 | //- Construct for mesh points |
| 123 | localPoints(const pointField& pts) |
| 124 | : |
| 125 | nPoints(0), |
| 126 | list(pts.size(), -1) |
| 127 | {} |
| 128 | }; |
| 129 | |
| 130 | |
| 131 | // Protected Member Functions |
no outgoing calls
no test coverage detected