------------------------------------------------------------------------------
| 1001 | |
| 1002 | //------------------------------------------------------------------------------ |
| 1003 | bool vtkCompositePolyDataMapper::GetBlockVisibility(unsigned int index) |
| 1004 | { |
| 1005 | if (this->CompositeAttributes) |
| 1006 | { |
| 1007 | auto dataObj = |
| 1008 | vtkCompositeDataDisplayAttributes::DataObjectFromIndex(index, this->GetInputDataObject(0, 0)); |
| 1009 | if (dataObj) |
| 1010 | { |
| 1011 | return this->CompositeAttributes->GetBlockVisibility(dataObj); |
| 1012 | } |
| 1013 | } |
| 1014 | |
| 1015 | return true; |
| 1016 | } |
| 1017 | |
| 1018 | //------------------------------------------------------------------------------ |
| 1019 | void vtkCompositePolyDataMapper::RemoveBlockVisibility(unsigned int index) |
no test coverage detected