Ellipse Constructor (PointF, SizeF, Single) |
http://www.emgu.com
Create an ellipse with specific parameters
Namespace: Emgu.CV.StructureAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Ellipse(
PointF center,
SizeF size,
float angle
)
Public Sub New (
center As PointF,
size As SizeF,
angle As Single
)
public:
Ellipse(
PointF center,
SizeF size,
float angle
)
new :
center : PointF *
size : SizeF *
angle : float32 -> Ellipse
Parameters
- center
- Type: System.DrawingPointF
The center of the ellipse - size
- Type: System.DrawingSizeF
The width and height of the ellipse - angle
- Type: SystemSingle
The rotation angle in radian for the ellipse
See Also