C# Class ImageMagick.PathLineToRel

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

Public Methods

Method Description
PathLineToRel ( ) : System.Collections.Generic

Initializes a new instance of the PathLineToRel class.

PathLineToRel ( IEnumerable coordinates ) : System.Collections.Generic

Initializes a new instance of the PathLineToRel class.

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

Initializes a new instance of the PathLineToRel class.

Private Methods

Method Description
IPath ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

PathLineToRel() public method

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

PathLineToRel() public method

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

PathLineToRel() public method

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