------------------------------------------------------------------------------
| 141 | |
| 142 | //------------------------------------------------------------------------------ |
| 143 | int vtkDistributedDataFilter::GetBoundaryMode() |
| 144 | { |
| 145 | if (!this->IncludeAllIntersectingCells && !this->ClipCells) |
| 146 | { |
| 147 | return vtkDistributedDataFilter::ASSIGN_TO_ONE_REGION; |
| 148 | } |
| 149 | if (this->IncludeAllIntersectingCells && !this->ClipCells) |
| 150 | { |
| 151 | return vtkDistributedDataFilter::ASSIGN_TO_ALL_INTERSECTING_REGIONS; |
| 152 | } |
| 153 | if (this->IncludeAllIntersectingCells && this->ClipCells) |
| 154 | { |
| 155 | return vtkDistributedDataFilter::SPLIT_BOUNDARY_CELLS; |
| 156 | } |
| 157 | |
| 158 | return -1; |
| 159 | } |
| 160 | |
| 161 | //------------------------------------------------------------------------------ |
| 162 |
no outgoing calls
no test coverage detected