PointsBoundingBox3D_OrNil


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

Syntax

C++
C#
Python
 
def PointsBoundingBox3D_OrNil(
	inPoints: list[Point3D],
	/
)
-> outBoundingBox3D: Box3D | None

Parameters

Name Type Default Description
Input value inPoints list[Point3D]
Output value outBoundingBox3D Box3D | None