| 255 | } |
| 256 | |
| 257 | void TransferFunction::PrintSelf(std::ostream &os, itk::Indent indent) const |
| 258 | { |
| 259 | os << indent << "ScalarOpacity: "; |
| 260 | m_ScalarOpacityFunction->PrintHeader(os, vtkIndent()); |
| 261 | os << indent << "GradientOpacity: "; |
| 262 | m_GradientOpacityFunction->PrintHeader(os, vtkIndent()); |
| 263 | os << indent << "ColorTransfer: "; |
| 264 | m_ColorTransferFunction->PrintHeader(os, vtkIndent()); |
| 265 | os << indent << "Min: " << m_Min << ", Max: " << m_Max << std::endl; |
| 266 | } |
| 267 | |
| 268 | } // namespace |
nothing calls this directly
no test coverage detected