C# Class ImageMagick.DrawablePoint

Draws a point using the current fill color.
Inheritance: IDrawable
Show file Open project: dlemstra/Magick.NET

Public Methods

Method Description
DrawablePoint ( double x, double y )

Initializes a new instance of the DrawablePoint class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

DrawablePoint() public method

Initializes a new instance of the DrawablePoint class.
public DrawablePoint ( double x, double y )
x double The X coordinate.
y double The Y coordinate.

IDrawable() public method

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