------------------------------------------------------------------------------ Description: Create an empty cell. \post result_exists: result!=0
| 80 | // Create an empty cell. |
| 81 | // \post result_exists: result!=0 |
| 82 | vtkGenericAdaptorCell* vtkBridgeCellIterator::NewCell() |
| 83 | { |
| 84 | vtkGenericAdaptorCell* result = vtkBridgeCell::New(); |
| 85 | assert("post: result_exists" && result != nullptr); |
| 86 | return result; |
| 87 | } |
| 88 | |
| 89 | //------------------------------------------------------------------------------ |
| 90 | // Description: |
no test coverage detected