------------------------------------------------------------------------------ Description: Does the cell have no higher-order interpolation for geometry? \post definition: result==(GetGeometryOrder()==1)
| 165 | // Does the cell have no higher-order interpolation for geometry? |
| 166 | // \post definition: result==(GetGeometryOrder()==1) |
| 167 | int vtkBridgeCell::IsGeometryLinear() |
| 168 | { |
| 169 | int result = this->Cell->IsLinear(); |
| 170 | assert("post: definition" && result == (GetGeometryOrder() == 1)); |
| 171 | return result; |
| 172 | } |
| 173 | |
| 174 | //------------------------------------------------------------------------------ |
| 175 | // Description: |
no test coverage detected