update : 2015.11.03
php.shukuma.com검색:
|
CairoContext::curveTocairo_curve_to(PECL cairo >= 0.1.0) CairoContext::curveTo -- cairo_curve_to — Adds a curve 설명객체 기반 형식 (method):
public void CairoContext::curveTo
( float
$x1
, float $y1
, float $x2
, float $y2
, float $x3
, float $y3
)절차식 형식:
void cairo_curve_to
( CairoContext
$context
, float $x1
, float $y1
, float $x2
, float $y2
, float $x3
, float $y3
)
Adds a cubic Bezier spline to the path from the current point to position
If there is no current point before the call to CairoContext::curveTo()
this function will behave as if preceded by a call to CairoContext::moveTo()
( 인수
반환값값을 반환하지 않습니다. 예제
Example #1 객체 기반 형식
<?php
Example #2 절차식 형식
<?php |