32class G4VtkStructuredGridPipeline
34 G4VtkStructuredGridPipeline(
G4int nxIn,
G4int nyIn,
G4int nzIn) : nx(nxIn), ny(nyIn), nz(nzIn)
36 structuredGrid->SetDimensions(nx, ny, nz);
37 structuredGrid->SetPoints(points);
38 structuredGrid->GetCellData()->SetScalars(cellValues);
39 structuredGrid->GetPointData()->SetScalars(pointValues);
41 mapper->SetInputData(structuredGrid);
42 actor->SetMapper(mapper);