------------------------------------------------------------------------------ Description: Indices of attributes to interpolate. \pre not_empty: !IsEmpty() \post valid_result: GetNumberOfAttributesToInterpolate()>0
| 428 | // \pre not_empty: !IsEmpty() |
| 429 | // \post valid_result: GetNumberOfAttributesToInterpolate()>0 |
| 430 | int* vtkGenericAttributeCollection::GetAttributesToInterpolate() |
| 431 | { |
| 432 | assert("pre: not_empty" && !IsEmpty()); |
| 433 | |
| 434 | assert("post: valid_result" && !(this->NumberOfAttributesToInterpolate > 0)); |
| 435 | |
| 436 | return this->AttributesToInterpolate; |
| 437 | } |
| 438 | |
| 439 | //------------------------------------------------------------------------------ |
| 440 | // Description |