(PECL cairo >= 0.1.0)
CairoContext::newPath -- cairo_new_path — The newPath purpose
Styl obiektowy (method):
Styl proceduralny:
Clears the current path. After this call there will be no path and no current point.
context
A valid CairoContext object.
Nie jest zwracana żadna wartość.
Przykład #1 Styl obiektowy
<?php
// [...]
CairoContext::newPath();
?>
Przykład #2 Styl proceduralny
<?php
// [...]
cairo_new_path($context);
?>