update : 2015.11.03
php.shukuma.com검색:
|
CairoContext::arccairo_arc(PECL cairo >= 0.1.0) CairoContext::arc -- cairo_arc — Adds a circular arc 설명객체 기반 형식 (method):
public void CairoContext::arc
( float
$x
, float $y
, float $radius
, float $angle1
, float $angle2
)절차식 형식:
void cairo_arc
( CairoContext
$context
, float $x
, float $y
, float $radius
, float $angle1
, float $angle2
)
Adds a circular arc of the given radius to the current path.
The arc is centered at ( 인수
반환값값을 반환하지 않습니다. 예제
Example #1 객체 기반 형식
<?php
Example #2 절차식 형식
<?php |