(PECL cairo >= 0.1.0)
CairoContext::newPath -- cairo_new_path — The newPath purpose
オブジェクト指向型 (method):
手続き型:
Clears the current path. After this call there will be no path and no current point.
context
A valid CairoContext object.
値を返しません。
例1 オブジェクト指向型
<?php
// [...]
CairoContext::newPath();
?>
例2 手続き型
<?php
// [...]
cairo_new_path($context);
?>