------------------------------------------------------------------------------ Description: Number of points composing the dataset. See NewPointIterator for more details. \post positive_result: result>=0
| 126 | // details. |
| 127 | // \post positive_result: result>=0 |
| 128 | vtkIdType vtkBridgeDataSet::GetNumberOfPoints() |
| 129 | { |
| 130 | vtkIdType result = 0; |
| 131 | if (this->Implementation) |
| 132 | { |
| 133 | result = this->Implementation->GetNumberOfPoints(); |
| 134 | } |
| 135 | assert("post: positive_result" && result >= 0); |
| 136 | return result; |
| 137 | } |
| 138 | |
| 139 | //------------------------------------------------------------------------------ |
| 140 | // Description: |
no test coverage detected