PointsBoundingEllipse


Computes the smallest ellipse containing an array of points if such ellipse exists.

Syntax

C++
C#
Python
 
def PointsBoundingEllipse(
	inPoints: list[Point2D],
	/
)
-> (
	outBoundingEllipse: Ellipse2D,
	outBoundaryPoints: list[Point2D]
)

Parameters

Name Type Default Description
Input value inPoints list[Point2D]
Output value outBoundingEllipse Ellipse2D
Output value outBoundaryPoints list[Point2D]