------------------------------------------------------------------------------
| 1327 | |
| 1328 | //------------------------------------------------------------------------------ |
| 1329 | void vtkWindBladeReader::SetUpGroundData(vtkInformationVector* outVector) |
| 1330 | { |
| 1331 | vtkInformation* groundInfo = outVector->GetInformationObject(2); |
| 1332 | vtkStructuredGrid* ground = this->GetGroundOutput(); |
| 1333 | |
| 1334 | // Set the extent info for this processor |
| 1335 | groundInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), this->GSubExtent); |
| 1336 | ground->SetExtent(this->GSubExtent); |
| 1337 | |
| 1338 | // Set the rectilinear coordinates matching the requested subextents |
| 1339 | this->FillGroundCoordinates(); |
| 1340 | ground->SetPoints(this->GPoints); |
| 1341 | } |
| 1342 | |
| 1343 | //------------------------------------------------------------------------------ |
| 1344 | void vtkWindBladeReader::InitPressureData( |
no test coverage detected