63 :
64 G4VVtkPipeline(nameIn,
"G4VtkUnstructuredPipeline", vcIn,
false, vcIn.fViewer->renderer) {
65
66 points = vtkSmartPointer<vtkPoints>::New();
67
68 pointColourValues = vtkSmartPointer<vtkDoubleArray>::New();
69 cellColourValues = vtkSmartPointer<vtkDoubleArray>::New();
70 pointColourValues->SetNumberOfComponents(4);
71 cellColourValues->SetNumberOfComponents(4);
72
73 pointColourIndices = vtkSmartPointer<vtkDoubleArray>::New();
74 cellColourIndices = vtkSmartPointer<vtkDoubleArray>::New();
75 pointColourIndices->SetNumberOfComponents(1);
76 cellColourIndices->SetNumberOfComponents(1);
77
78 colourLUT = vtkSmartPointer<vtkDiscretizableColorTransferFunction>::New();
79 colourLUT->DiscretizeOn();
80
81 unstructuredGrid = vtkSmartPointer<vtkUnstructuredGrid>::New();
82 unstructuredGrid->SetPoints(points);
83 unstructuredGrid->GetPointData()->SetScalars(pointColourValues);
84 unstructuredGrid->GetCellData()->SetScalars(cellColourValues);
85
86
87#if 0
88 clean = vtkSmartPointer<vtkStaticCleanUnstructuredGrid>::New();
89 clean->SetInputData(unstructuredGrid);
90 clean->ToleranceIsAbsoluteOff();
91 clean->SetTolerance(1e-6);
92#endif
93
94
95 clip = vtkSmartPointer<vtkClipDataSet>::New();
96 vtkNew<vtkPlane> plane;
97 clip->SetClipFunction(plane);
98 clip->SetInputData(unstructuredGrid);
99
100
101 auto tri = vtkSmartPointer<vtkDataSetTriangleFilter>::New();
102 tri->SetInputData(unstructuredGrid);
103
104
105 mapper = vtkSmartPointer<vtkDataSetMapper>::New();
106 mapper->SetScalarModeToUseCellData();
107 mapper->SetColorModeToDirectScalars();
108 mapper->SetInputData(unstructuredGrid);
109
110
111
112
113 volumeMapper = vtkSmartPointer<vtkUnstructuredGridVolumeRayCastMapper>::New();
114 volumeMapper->SetScalarModeToUseCellData();
115 volumeMapper->SetInputConnection(tri->GetOutputPort());
116
117
118 auto volumeProp = vtkSmartPointer<vtkVolumeProperty>::New();
119 volumeProp->SetColor(colourLUT);
120
121
122 actor = vtkSmartPointer<vtkActor>::New();
123 actor->SetMapper(mapper);
124 actor->SetVisibility(1);
125
126
127 volume = vtkSmartPointer<vtkVolume>::New();
128 volume->SetMapper(volumeMapper);
129
130 volume->SetVisibility(1);
131
132
133 vc.fViewer->renderer->AddActor(actor);
134
135}