PointsBoundingBox_OrNil


Computes the smallest box containing an array of points; returns NIL if the array is empty.

Syntax

C++
Python
 
def PointsBoundingBox_OrNil(
	inPoints: list[Point2D],
	/
)
-> outBoundingBox: Box | None

Parameters

Name Type Default Description
Input value inPoints list[Point2D]
Output value outBoundingBox Box | None