MCPcopy Create free account
hub / github.com/Kitware/VTK / IsInside

Method IsInside

Filters/Modeling/vtkSelectEnclosedPoints.cxx:282–292  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

280
281//------------------------------------------------------------------------------
282int 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//------------------------------------------------------------------------------
295int vtkSelectEnclosedPoints::IsInsideSurface(double x, double y, double z)

Callers

nothing calls this directly

Calls 1

GetValueMethod · 0.45

Tested by

no test coverage detected