(PECL cairo >= 0.1.0)
The newPath purpose
public void CairoContext::newPath ( void )
Object oriented style (method):
Procedural style:
Clears the current path. After this call there will be no path and no current point.
Parameters:
context
A valid CairoContext object.
Returns:
No value is returned.
Examples:
Object oriented style
<?php // [...] CairoContext::newPath(); ?>
Procedural style
<?php // [...] cairo_new_path($context); ?>
See also:
Please login to continue.