C# Class ImageMagick.DrawableEllipse

Encapsulation of the DrawableEllipse object.
Inheritance: IDrawableEllipse
Show file Open project: dlemstra/Magick.NET

Public Methods

Method Description
DrawableEllipse ( double originX, double originY, double radiusX, double radiusY, double startDegrees, double endDegrees )

Initializes a new instance of the DrawableEllipse class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

DrawableEllipse() public method

Initializes a new instance of the DrawableEllipse class.
public DrawableEllipse ( double originX, double originY, double radiusX, double radiusY, double startDegrees, double endDegrees )
originX double The origin X coordinate.
originY double The origin Y coordinate.
radiusX double The X radius.
radiusY double The Y radius.
startDegrees double The starting degrees of rotation.
endDegrees double The ending degrees of rotation.

IDrawable() public method

Draws this instance with the drawing wand.
public IDrawable ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
return void