C# Class ImageMagick.DrawableStrokeMiterLimit

Specifies the miter limit. When two line segments meet at a sharp angle and miter joins have been specified for 'DrawableStrokeLineJoin', it is possible for the miter to extend far beyond the thickness of the line stroking the path. The 'DrawableStrokeMiterLimit' imposes a limit on the ratio of the miter length to the 'DrawableStrokeLineWidth'.
Inheritance: IDrawable
Show file Open project: dlemstra/Magick.NET

Public Methods

Method Description
DrawableStrokeMiterLimit ( int miterlimit )

Initializes a new instance of the DrawableStrokeMiterLimit class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

DrawableStrokeMiterLimit() public method

Initializes a new instance of the DrawableStrokeMiterLimit class.
public DrawableStrokeMiterLimit ( int miterlimit )
miterlimit int The miter limit.

IDrawable() public method

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