point_is_inside_box_3d# regridding.geometry.point_is_inside_box_3d(point, box)[source]# Check if a given query point is contained within a 3D box specified by two opposite corners. Parameters: point (tuple[float, float, float]) – The query point. box (tuple[tuple[float, float, float], tuple[float, float, float]]) – A bounding box specified by two points. Return type: bool