Query: cairo_new_path
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CAIRO_NEW_PATH(3) 1 CAIRO_NEW_PATH(3) CairoContext::newPath - The newPath purpose Object oriented style (method):SYNOPSISpublic void CairoContext::newPath (void )DESCRIPTIONProcedural style: void cairo_new_path (CairoContext $context) Clears the current path. After this call there will be no path and no current point.PARAMETERSo $context - A valid CairoContext object.RETURN VALUESNo value is returned.EXAMPLESExample #1 Object oriented style <?php // [...] CairoContext::newPath(); ?> Example #2 Procedural style <?php // [...] cairo_new_path($context); ?>SEE ALSOCairoContext::appendPath, CairoContext::closePath. PHP Documentation Group CAIRO_NEW_PATH(3)