(PECL cairo >= 0.1.0)
CairoContext::newPath -- cairo_new_path — The newPath purpose
Stile orientato agli oggetti (method):
Stile procedurale:
Clears the current path. After this call there will be no path and no current point.
context
A valid CairoContext object.
Nessun valore viene restituito.
Example #1 Stile orientato agli oggetti
<?php
// [...]
CairoContext::newPath();
?>
Example #2 Stile procedurale
<?php
// [...]
cairo_new_path($context);
?>