------------------------------------------------------------------------------ Description: Points composing the dataset; they can be on a vertex or isolated. \post result_exists: result!=0
| 357 | // Points composing the dataset; they can be on a vertex or isolated. |
| 358 | // \post result_exists: result!=0 |
| 359 | vtkGenericPointIterator* vtkBridgeDataSet::NewPointIterator() |
| 360 | { |
| 361 | vtkBridgePointIterator* result = vtkBridgePointIterator::New(); |
| 362 | result->InitWithDataSet(this); |
| 363 | assert("post: result_exists" && result != nullptr); |
| 364 | return result; |
| 365 | } |
| 366 | |
| 367 | //------------------------------------------------------------------------------ |
| 368 | // Description: |