CADability dotNET
Constructs an ellipse in 2D. The two axis may not be orthogonal but must not be colinear.

Namespace: CADability.Curve2D
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public Ellipse2D(
	GeoPoint2D center,
	GeoVector2D axis1,
	GeoVector2D axis2
)
Visual Basic
Public Sub New ( _
	center As GeoPoint2D, _
	axis1 As GeoVector2D, _
	axis2 As GeoVector2D _
)
Visual C++
public:
Ellipse2D(
	GeoPoint2D center, 
	GeoVector2D axis1, 
	GeoVector2D axis2
)

Parameters

center
Type: CADability..::..GeoPoint2D
Center of the ellipse
axis1
Type: CADability..::..GeoVector2D
First axis of the ellipse
axis2
Type: CADability..::..GeoVector2D
Second axis of the ellipse

See Also