------------------------------------------------------------------------------ Description: Interpolation order of attribute `a' on the cell (may differ by cell). \pre a_exists: a!=0 \post positive_result: result>=0
| 177 | // \pre a_exists: a!=0 |
| 178 | // \post positive_result: result>=0 |
| 179 | int vtkBridgeCell::GetAttributeOrder(vtkGenericAttribute* vtkNotUsed(a)) |
| 180 | { |
| 181 | int result = this->GetGeometryOrder(); |
| 182 | assert("post: positive_result" && result >= 0); |
| 183 | return result; |
| 184 | } |
| 185 | |
| 186 | //------------------------------------------------------------------------------ |
| 187 | // Description: |
no test coverage detected