------------------------------------------------------------------------------
| 293 | |
| 294 | //------------------------------------------------------------------------------ |
| 295 | int vtkSelectEnclosedPoints::IsInsideSurface(double x, double y, double z) |
| 296 | { |
| 297 | double xyz[3]; |
| 298 | xyz[0] = x; |
| 299 | xyz[1] = y; |
| 300 | xyz[2] = z; |
| 301 | return this->IsInsideSurface(xyz); |
| 302 | } |
| 303 | |
| 304 | //------------------------------------------------------------------------------ |
| 305 | // This is done to preserve backward compatibility. However it is not thread |
nothing calls this directly
no test coverage detected