------------------------------------------------------------------------------ Description: Does the attribute `a' have no higher-order interpolation for the cell? \pre a_exists: a!=0 \post definition: result==(GetAttributeOrder()==1)
| 189 | // \pre a_exists: a!=0 |
| 190 | // \post definition: result==(GetAttributeOrder()==1) |
| 191 | vtkTypeBool vtkBridgeCell::IsAttributeLinear(vtkGenericAttribute* a) |
| 192 | { |
| 193 | (void)a; // The attribute order is the order of the geometry. |
| 194 | int result = this->IsGeometryLinear(); |
| 195 | assert("post: definition" && result == (GetAttributeOrder(a) == 1)); |
| 196 | return result; |
| 197 | } |
| 198 | |
| 199 | //------------------------------------------------------------------------------ |
| 200 | // Description: |
nothing calls this directly
no test coverage detected