PHP 클래스 Grafika\DrawingObject\QuadraticBezier

파일 보기 프로젝트 열기: kosinix/grafika

보호된 프로퍼티들

프로퍼티 타입 설명
$color Grafika\Color Color of curve.
$control array Control point.
$point1 array Starting point.
$point2 array End point.

공개 메소드들

메소드 설명
__construct ( array $point1, array $control, array $point2, Color | string $color = '#000000' ) Creates a quadratic bezier. Quadratic bezier has 1 control point.
getColor ( ) : Color
getControl ( ) : array
getPoint1 ( ) : array
getPoint2 ( ) : array

메소드 상세

__construct() 공개 메소드

Creates a quadratic bezier. Quadratic bezier has 1 control point.
public __construct ( array $point1, array $control, array $point2, Color | string $color = '#000000' )
$point1 array Array of X and Y value for start point.
$control array Array of X and Y value for control point.
$point2 array Array of X and Y value for end point.
$color Grafika\Color | string Color of the curve. Accepts hex string or a Color object. Defaults to black.

getColor() 공개 메소드

public getColor ( ) : Color
리턴 Grafika\Color

getControl() 공개 메소드

public getControl ( ) : array
리턴 array

getPoint1() 공개 메소드

public getPoint1 ( ) : array
리턴 array

getPoint2() 공개 메소드

public getPoint2 ( ) : array
리턴 array

프로퍼티 상세

$color 보호되어 있는 프로퍼티

Color of curve.
protected Color,Grafika $color
리턴 Grafika\Color

$control 보호되어 있는 프로퍼티

Control point.
protected array $control
리턴 array

$point1 보호되어 있는 프로퍼티

Starting point.
protected array $point1
리턴 array

$point2 보호되어 있는 프로퍼티

End point.
protected array $point2
리턴 array