------------------------------------------------------------------------------
| 1102 | |
| 1103 | //------------------------------------------------------------------------------ |
| 1104 | bool 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 | } |
| 1110 | VTK_ABI_NAMESPACE_END |