------------------------------------------------------------------------------
| 2212 | |
| 2213 | //------------------------------------------------------------------------------ |
| 2214 | void vtkMFIXReader::FillVectorVariable(int xindex, int yindex, int zindex, vtkFloatArray* v) |
| 2215 | { |
| 2216 | for (int i = 0; i <= this->CellDataArray[xindex]->GetMaxId(); i++) |
| 2217 | { |
| 2218 | v->InsertComponent(i, 0, this->CellDataArray[xindex]->GetValue(i)); |
| 2219 | v->InsertComponent(i, 1, this->CellDataArray[yindex]->GetValue(i)); |
| 2220 | v->InsertComponent(i, 2, this->CellDataArray[zindex]->GetValue(i)); |
| 2221 | } |
| 2222 | v->Modified(); |
| 2223 | } |
| 2224 | |
| 2225 | //------------------------------------------------------------------------------ |
| 2226 | void vtkMFIXReader::ConvertVectorFromCylindricalToCartesian(int xindex, int zindex) |
no test coverage detected