You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Constructions » AVL.EllipseThroughFourPoints

AVL.EllipseThroughFourPoints

Computes an ellipse passing through four noncollinear points.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void EllipseThroughFourPoints
(
	AvlNet.Point2D inPoint1,
	AvlNet.Point2D inPoint2,
	AvlNet.Point2D inPoint3,
	AvlNet.Point2D inPoint4,
	out AvlNet.Ellipse2D? outEllipse
)

Parameters

Name Type Range Default Description
inPoint1AvlNet.Point2D
inPoint2AvlNet.Point2D
inPoint3AvlNet.Point2D
inPoint4AvlNet.Point2D
outEllipseAvlNet.Ellipse2D?Ellipse passing through the specified points; or Nil if the points don't define a proper ellipse.

See also