------------------------------------------------------------------------------
| 328 | |
| 329 | //------------------------------------------------------------------------------ |
| 330 | void vtkDataArray::SetLookupTable(vtkLookupTable* lut) |
| 331 | { |
| 332 | if (this->LookupTable != lut) |
| 333 | { |
| 334 | if (this->LookupTable) |
| 335 | { |
| 336 | this->LookupTable->UnRegister(this); |
| 337 | } |
| 338 | this->LookupTable = lut; |
| 339 | if (this->LookupTable) |
| 340 | { |
| 341 | this->LookupTable->Register(this); |
| 342 | } |
| 343 | this->Modified(); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | //------------------------------------------------------------------------------ |
| 348 | double* vtkDataArray::GetTupleN(vtkIdType i, int n) |
no test coverage detected