Class PathQuadraticCurveToAbs
- Namespace
- ImageMagick
- Assembly
- Magick.NET-Q16-AnyCPU.dll
Draws a quadratic Bezier curve from the current point to (x, y) using (x1, y1) as the control point 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 PathQuadraticCurveToAbs : IPathQuadraticCurveTo, IPath
- Inheritance
-
PathQuadraticCurveToAbs
- Implements
-
IPathQuadraticCurveToIPath
- Inherited Members
Constructors
PathQuadraticCurveToAbs(PointD, PointD)
Initializes a new instance of the PathQuadraticCurveToAbs class.
public PathQuadraticCurveToAbs(PointD controlPoint, PointD end)
Parameters
controlPoint
PointDCoordinate of control point.
end
PointDCoordinate of final point.
PathQuadraticCurveToAbs(double, double, double, double)
Initializes a new instance of the PathQuadraticCurveToAbs class.
public PathQuadraticCurveToAbs(double x1, double y1, double x, double y)
Parameters
x1
doubleX coordinate of control point.
y1
doubleY coordinate of control point.
x
doubleX coordinate of final point.
y
doubleY coordinate of final point.
Properties
ControlPoint
Gets the coordinate of control point.
public PointD ControlPoint { get; }
Property Value
- PointD
End
Gets the coordinate of final point.
public PointD End { get; }
Property Value
- PointD