Table of Contents

Class PathSmoothQuadraticCurveToRel

Namespace
ImageMagick
Assembly
Magick.NET-Q16-AnyCPU.dll

Draws a quadratic Bezier curve (using relative coordinates) from the current point to (X, Y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a PathQuadraticCurveToAbs, PathQuadraticCurveToRel, PathSmoothQuadraticCurveToAbs or PathSmoothQuadraticCurveToRel, assume the control point is coincident with the current point.). At the end of the command, the new current point becomes the final (X,Y) coordinate pair used in the polybezier.

public sealed class PathSmoothQuadraticCurveToRel : IPathSmoothQuadraticCurveTo, IPath
Inheritance
PathSmoothQuadraticCurveToRel
Implements
IPathSmoothQuadraticCurveTo
IPath
Inherited Members

Constructors

PathSmoothQuadraticCurveToRel(PointD)

Initializes a new instance of the PathSmoothQuadraticCurveToRel class.

public PathSmoothQuadraticCurveToRel(PointD end)

Parameters

end PointD

Coordinate of final point.

PathSmoothQuadraticCurveToRel(double, double)

Initializes a new instance of the PathSmoothQuadraticCurveToRel class.

public PathSmoothQuadraticCurveToRel(double x, double y)

Parameters

x double

X coordinate of final point.

y double

Y coordinate of final point.

Properties

End

Gets the coordinate of final point.

public PointD End { get; }

Property Value

PointD