update : 2015.11.03
php.shukuma.com검색:
|
CairoContext::hasCurrentPointcairo_has_current_point(PECL cairo >= 0.1.0) CairoContext::hasCurrentPoint -- cairo_has_current_point — The hasCurrentPoint purpose 설명객체 기반 형식 (method):
public bool CairoContext::hasCurrentPoint
( void
)
절차식 형식: Returns whether a current point is defined on the current path. See CairoContext::getCurrentPoint() for details on the current point. 반환값Whether a current point is defined 예제
Example #1 객체 기반 형식
<?php 위 예제의 출력: bool(false) bool(true)
Example #2 절차식 형식
<?php 위 예제의 출력: bool(false) bool(true) |