(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
1 2 3 4 | <?php // [...] CairoContext::newPath(); ?> |
Procedural style
1 2 3 4 | <?php // [...] cairo_new_path( $context ); ?> |
See also:
Please login to continue.