| 705 | |
| 706 | RenderingManager::FloatVector &RenderingManager::GetShadingValues() { return m_ShadingValues; } |
| 707 | void RenderingManager::InitializePropertyList() |
| 708 | { |
| 709 | if (m_PropertyList.IsNull()) |
| 710 | { |
| 711 | m_PropertyList = PropertyList::New(); |
| 712 | } |
| 713 | |
| 714 | this->SetProperty("coupled-zoom", BoolProperty::New(false)); |
| 715 | this->SetProperty("coupled-plane-rotation", BoolProperty::New(false)); |
| 716 | this->SetProperty("MIP-slice-rendering", BoolProperty::New(false)); |
| 717 | } |
| 718 | |
| 719 | PropertyList::Pointer RenderingManager::GetPropertyList() const { return m_PropertyList; } |
| 720 | BaseProperty *RenderingManager::GetProperty(const char *propertyKey) const |
nothing calls this directly
no test coverage detected