How to add your knowledge

bboxPoints()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1

    Synopsis

    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.

    Syntax

    bboxPoints ( points As List ) As List 
    Argument Type Description
    points List The set of points to be bounded.

    Example 1

    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())}