------------------------------------------------------------------------------
| 280 | |
| 281 | //------------------------------------------------------------------------------ |
| 282 | int vtkSelectEnclosedPoints::IsInside(vtkIdType inputPtId) |
| 283 | { |
| 284 | if (!this->InsideOutsideArray || this->InsideOutsideArray->GetValue(inputPtId) == 0) |
| 285 | { |
| 286 | return 0; |
| 287 | } |
| 288 | else |
| 289 | { |
| 290 | return 1; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | //------------------------------------------------------------------------------ |
| 295 | int vtkSelectEnclosedPoints::IsInsideSurface(double x, double y, double z) |