----------------------------------------------------------------------------
| 1937 | |
| 1938 | //---------------------------------------------------------------------------- |
| 1939 | vtkSMColorMapEditorHelper::ColorArray vtkSMColorMapEditorHelper::GetColorArray(vtkSMProxy* proxy) |
| 1940 | { |
| 1941 | const vtkSMPropertyHelper colorArray(proxy, "ColorArrayName"); |
| 1942 | return std::make_pair( |
| 1943 | colorArray.GetInputArrayAssociation(), colorArray.GetInputArrayNameToProcess()); |
| 1944 | } |
| 1945 | |
| 1946 | //---------------------------------------------------------------------------- |
| 1947 | std::vector<vtkSMColorMapEditorHelper::ColorArray> vtkSMColorMapEditorHelper::GetBlocksColorArrays( |
nothing calls this directly
no test coverage detected