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
- 
      IPathCurveToIPath
- Inherited Members
Constructors
PathCurveToAbs(PointD, PointD, PointD)
Initializes a new instance of the PathCurveToAbs class.
public PathCurveToAbs(PointD controlPointStart, PointD controlPointEnd, PointD end)Parameters
- controlPointStartPointD
- Coordinate of control point for curve beginning. 
- controlPointEndPointD
- Coordinate of control point for curve ending. 
- endPointD
- 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
- x1double
- X coordinate of control point for curve beginning. 
- y1double
- Y coordinate of control point for curve beginning. 
- x2double
- X coordinate of control point for curve ending. 
- y2double
- Y coordinate of control point for curve ending. 
- xdouble
- X coordinate of the end of the curve. 
- ydouble
- 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