pyvista.core.utilities.is_inside_bounds# is_inside_bounds(point, bounds)[ソース]# ポイントが境界のセット内にあるかどうかをチェックします. これは再帰的に実装されているため,N次元になります. パラメータ: pointsequence[float]3項目の直交点(例 [x, y, z] ). boundssequence[float]Six item bounds in the form of (x_min, x_max, y_min, y_max, z_min, z_max). 戻り値: boolpoint が bounds 内にある場合は True となります.