------------------------------------------------------------------------------ Description: Put into `id' the list of ids the point of the cell. \pre id_exists: id!=0 \pre valid_size: sizeof(id)==GetNumberOfPoints();
| 687 | // \pre id_exists: id!=0 |
| 688 | // \pre valid_size: sizeof(id)==GetNumberOfPoints(); |
| 689 | void vtkBridgeCell::GetPointIds(vtkIdType* id) |
| 690 | { |
| 691 | vtkIdType i = 0; |
| 692 | vtkIdList* l = this->Cell->GetPointIds(); |
| 693 | vtkIdType c = this->GetNumberOfBoundaries(0); |
| 694 | while (i < c) |
| 695 | { |
| 696 | id[i] = l->GetId(i); |
| 697 | ++i; |
| 698 | } |
| 699 | } |
| 700 | //------------------------------------------------------------------------------ |
| 701 | // Description: |
| 702 | // Return the ids of the vertices defining face `faceId'. |
no test coverage detected