------------------------------------------------------------------------------
| 1726 | |
| 1727 | //------------------------------------------------------------------------------ |
| 1728 | int vtkDataSetAttributes::IsArrayAnAttribute(int idx) |
| 1729 | { |
| 1730 | for (int i = 0; i < NUM_ATTRIBUTES; ++i) |
| 1731 | { |
| 1732 | if (idx == this->AttributeIndices[i]) |
| 1733 | { |
| 1734 | return i; |
| 1735 | } |
| 1736 | } |
| 1737 | return -1; |
| 1738 | } |
| 1739 | |
| 1740 | //------------------------------------------------------------------------------ |
| 1741 | void vtkDataSetAttributes::SetCopyAttribute(int index, int value, int ctype) |
no outgoing calls
no test coverage detected