(PECL cairo >= 0.1.0)
CairoContext::hasCurrentPoint -- cairo_has_current_point — Le but de hasCurrentPoint
Style orienté objet (méthode) :
Style procédural :
Vérifie si le point courant est défini dans le chemin courant. Voir la méthode CairoContext::getCurrentPoint() pour plus de détails sur le point courant.
Si oui ou non le point courant est défini.
Exemple #1 Style orienté objet
<?php
$s = new CairoImageSurface(CairoFormat::ARGB32, 100, 100);
$c = new CairoContext($s);
var_dump($c->hasCurrentPoint());
$c->moveTo(10, 10);
var_dump($c->hasCurrentPoint());
?>
L'exemple ci-dessus va afficher :
bool(false) bool(true)
Exemple #2 Style procédural
<?php
$s = cairo_image_surface_create(CAIRO_SURFACE_TYPE_IMAGE, 100, 100);
$c = cairo_create($s);
var_dump(cairo_has_current_point($c));
cairo_move_to($c, 10, 10);
var_dump(cairo_has_current_point($c));
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
bool(false) bool(true)