C# Class ImageMagick.PathLineToAbs

Draws a line path from the current point to the given coordinate using absolute coordinates. The coordinate then becomes the new current point.
Inheritance: IPath
Show file Open project: dlemstra/Magick.NET

Public Methods

Method Description
PathLineToAbs ( ) : System.Collections.Generic

Initializes a new instance of the PathLineToAbs class.

PathLineToAbs ( IEnumerable coordinates ) : System.Collections.Generic

Initializes a new instance of the PathLineToAbs class.

PathLineToAbs ( double x, double y ) : System.Collections.Generic

Initializes a new instance of the PathLineToAbs class.

Private Methods

Method Description
IPath ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

PathLineToAbs() public method

Initializes a new instance of the PathLineToAbs class.
public PathLineToAbs ( ) : System.Collections.Generic
return System.Collections.Generic

PathLineToAbs() public method

Initializes a new instance of the PathLineToAbs class.
public PathLineToAbs ( IEnumerable coordinates ) : System.Collections.Generic
coordinates IEnumerable The coordinates to use.
return System.Collections.Generic

PathLineToAbs() public method

Initializes a new instance of the PathLineToAbs class.
public PathLineToAbs ( double x, double y ) : System.Collections.Generic
x double The X coordinate.
y double The Y coordinate.
return System.Collections.Generic