suche nach in der

CairoContext::newSubPath> <CairoContext::moveTo
Last updated: Fri, 11 May 2012

view this page in

CairoContext::newPath

cairo_new_path

(PECL cairo >= 0.1.0)

CairoContext::newPath -- cairo_new_pathThe newPath purpose

Beschreibung

Objektorientierter Stil (method):

public void CairoContext::newPath ( void )

Prozeduraler Stil:

void cairo_new_path ( CairoContext $context )

Clears the current path. After this call there will be no path and no current point.

Parameter-Liste

context

A valid CairoContext object.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Objektorientierter Stil

<?php
// [...]
CairoContext::newPath();
?>

Beispiel #2 Prozeduraler Stil

<?php
// [...]
cairo_new_path($context);
?>

Siehe auch



add a note add a note User Contributed Notes
CairoContext::newPath
There are no user contributed notes for this page.

CairoContext::newSubPath> <CairoContext::moveTo
Last updated: Fri, 11 May 2012