Computes the smallest circle containing an array of points.
Syntax
C++
C#
Python
def PointsBoundingCircle(
inPoints: list[Point2D],
/
)
-> outBoundingCircle: Circle2D
Parameters
|
Name |
Type |
Default |
Description |
 |
inPoints |
list[Point2D] |
|
|
 |
outBoundingCircle |
Circle2D |
|
|