指定された境界領域のセットに共通する(ブーリアン論理積)ボリュームを示す境界領域を返します。
境界領域は 2 つの点の一覧によって示されます。最初の点は境界領域の最小 x、y、z 座標を示し、2 番目の点は最大の点を示します。これにより、境界領域は常にワールド座標軸に位置合わせされます。
bboxIntersection ( bboxes As List ) As List
引数 | [タイプ] | 説明 |
---|---|---|
bboxes | [一覧] | 結合する境界領域のセットです。 |
Rule bbox1 As List = {Point(0,0,0), Point(10,10,0)} Rule bbox2 As List = {Point(-5,-2,0), Point(1,3,0)} Rule bbox3 As List = {Point(5,2,0), Point(13,9,0)}
Intent >bboxIntersection({bbox1, bbox2}) --> {Point_(0.0, 0.0, 0.0, WorldFrame()), Point_(1.0, 3.0, 0.0, WorldFrame())}
Intent >bboxIntersection({bbox2, bbox3}) --> {}