ImageMagick ImagickDraw::pathCurveToRelative

(PECL imagick 2, PECL imagick 3)

ImagickDraw::pathCurveToRelative — 3차 베지어 곡선을 그립니다.


설명

public ImagickDraw::pathCurveToRelative(
    float $x1,
    float $y1,
    float $x2,
    float $y2,
    float $x,
    float $y
): bool
                

경고 이 함수는 현재 문서화되어 있지 않습니다. 해당 인수 목록만 사용할 수 있습니다.

상대 좌표를 사용하여 곡선 시작 부분의 제어점으로 (x1,y1) 및 곡선 끝 부분의 제어점으로 (x2,y2)를 사용하여 현재 점에서 (x,y)까지 3차 베지어 곡선을 그립니다. . 명령이 끝나면 새 현재 점이 폴리베지어에서 사용되는 최종 (x,y) 좌표 쌍이 됩니다.


매개변수

x1
x coordinate of starting control point
y1
y coordinate of starting control point
x2
x coordinate of ending control point
y2
y coordinate of ending control point
x
ending x coordinate
y
ending y coordinate

반환 값

값이 반환되지 않습니다.