Returns the bounding box for a list of points .
Bounding boxes are represented by a list of two points . The first point represents the minimum x, y, and z coordinates of the bounding box, and the second point represents the maximum point . Thus the bounding box is always aligned with the world coordinate axes.
bboxPoints ( points As List ) As List
Argument | Type | Description |
---|---|---|
points | List | The set of points to be bounded. |
Intent >bboxPoints({point(-5,10,0),point(10,-5,0),point(15,0,0)}) --> {Point_(-5.0, -5.0, 0.0, WorldFrame()), Point_(15.0, 10.0, 0.0, WorldFrame())}