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

Method Inside

Filters/FlowPaths/vtkModifiedBSPTree.cxx:1104–1109  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1102
1103//------------------------------------------------------------------------------
1104bool BSPNode::Inside(double point[3]) const
1105{
1106 return this->Bounds[0] <= point[0] && point[0] <= this->Bounds[1] &&
1107 this->Bounds[2] <= point[1] && point[1] <= this->Bounds[3] && this->Bounds[4] <= point[2] &&
1108 point[2] <= this->Bounds[5];
1109}
1110VTK_ABI_NAMESPACE_END

Callers 1

FindCellMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected