C# 클래스 ImageMagick.PathSmoothQuadraticCurveToAbs

Draws a quadratic Bezier curve (using absolute coordinates) from the current point to (X, Y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a PathQuadraticCurveToAbs, PathQuadraticCurveToRel, PathSmoothQuadraticCurveToAbs or PathSmoothQuadraticCurveToRel, assume the control point is coincident with the current point.). 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

공개 메소드들

메소드 설명
PathSmoothQuadraticCurveToAbs ( PointD end )

Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.

PathSmoothQuadraticCurveToAbs ( double x, double y )

Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.

비공개 메소드들

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

Draws this instance with the drawing wand.

메소드 상세

PathSmoothQuadraticCurveToAbs() 공개 메소드

Initializes a new instance of the PathSmoothQuadraticCurveToAbs class.
public PathSmoothQuadraticCurveToAbs ( PointD end )
end PointD Coordinate of final point

PathSmoothQuadraticCurveToAbs() 공개 메소드

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