------------------------------------------------------------------------------ Description: Range of the attribute component `component'. It returns double, even if GetType()==VTK_INT. NOT THREAD SAFE \pre valid_component: (component>=-1)&&(component<GetNumberOfComponents()) \post result_exists: result!=0
| 145 | // \pre valid_component: (component>=-1)&&(component<GetNumberOfComponents()) |
| 146 | // \post result_exists: result!=0 |
| 147 | double* vtkBridgeAttribute::GetRange(int component) |
| 148 | { |
| 149 | assert( |
| 150 | "pre: valid_component" && (component >= -1) && (component < this->GetNumberOfComponents())); |
| 151 | this->Data->GetRange(this->AttributeNumber, this->Range, component); |
| 152 | return this->Range; |
| 153 | } |
| 154 | |
| 155 | //------------------------------------------------------------------------------ |
| 156 | // Description: |
nothing calls this directly
no test coverage detected