C# Класс ImageMagick.PathQuadraticCurveToAbs

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.
Наследование: IPath
Показать файл Открыть проект

Открытые методы

Метод Описание
PathQuadraticCurveToAbs ( PointD controlPoint, PointD end )

Initializes a new instance of the PathQuadraticCurveToAbs class.

PathQuadraticCurveToAbs ( double x1, double y1, double x, double y )

Initializes a new instance of the PathQuadraticCurveToAbs class.

Приватные методы

Метод Описание
IPath ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Описание методов

PathQuadraticCurveToAbs() публичный метод

Initializes a new instance of the PathQuadraticCurveToAbs class.
public PathQuadraticCurveToAbs ( PointD controlPoint, PointD end )
controlPoint PointD Coordinate of control point
end PointD Coordinate of final point

PathQuadraticCurveToAbs() публичный метод

Initializes a new instance of the PathQuadraticCurveToAbs class.
public PathQuadraticCurveToAbs ( double x1, double y1, double x, double y )
x1 double X coordinate of control point
y1 double Y coordinate of control point
x double X coordinate of final point
y double Y coordinate of final point