C# 클래스 ImageMagick.PathQuadraticCurveToRel

Draws a quadratic Bezier curve from the current point to (x, y) using (x1, y1) as the control point using relative coordinates. At the end of the command, the new current point becomes the final (x, y) coordinate pair used in the polybezier.
상속: IPath
파일 보기 프로젝트 열기: dlemstra/Magick.NET

공개 메소드들

메소드 설명
PathQuadraticCurveToRel ( PointD controlPoint, PointD end )

Initializes a new instance of the PathQuadraticCurveToRel class.

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

Initializes a new instance of the PathQuadraticCurveToRel class.

비공개 메소드들

메소드 설명
IPath ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

메소드 상세

PathQuadraticCurveToRel() 공개 메소드

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

PathQuadraticCurveToRel() 공개 메소드

Initializes a new instance of the PathQuadraticCurveToRel class.
public PathQuadraticCurveToRel ( 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