Table of Contents

Class PathCurveToAbs

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

Draws a cubic Bezier curve from the current point to (x, y) using (x1, y1) as the control point at the beginning of the curve and (x2, y2) as the control point at the end of the curve using absolute coordinates. At the end of the command, the new current point becomes the final (x, y) coordinate pair used in the polybezier.

public sealed class PathCurveToAbs : IPathCurveTo, IPath
Inheritance
PathCurveToAbs
Implements
IPathCurveTo
IPath
Inherited Members

Constructors

PathCurveToAbs(PointD, PointD, PointD)

Initializes a new instance of the PathCurveToAbs class.

public PathCurveToAbs(PointD controlPointStart, PointD controlPointEnd, PointD end)

Parameters

controlPointStart PointD

Coordinate of control point for curve beginning.

controlPointEnd PointD

Coordinate of control point for curve ending.

end PointD

Coordinate of the end of the curve.

PathCurveToAbs(double, double, double, double, double, double)

Initializes a new instance of the PathCurveToAbs class.

public PathCurveToAbs(double x1, double y1, double x2, double y2, double x, double y)

Parameters

x1 double

X coordinate of control point for curve beginning.

y1 double

Y coordinate of control point for curve beginning.

x2 double

X coordinate of control point for curve ending.

y2 double

Y coordinate of control point for curve ending.

x double

X coordinate of the end of the curve.

y double

Y coordinate of the end of the curve.

Properties

ControlPointEnd

Gets the coordinate of control point for curve ending.

public PointD ControlPointEnd { get; }

Property Value

PointD

ControlPointStart

Gets the coordinate of control point for curve beginning.

public PointD ControlPointStart { get; }

Property Value

PointD

End

Gets the coordinate of the end of the curve.

public PointD End { get; }

Property Value

PointD