CairoContext::newPath
cairo_new_path
(PECL cairo >= 0.1.0)
CairoContext::newPath -- cairo_new_path — The newPath purpose
Açıklama
Nesne yönelimli kullanım (method):
public void CairoContext::newPath
( void
)
Yordamsal kullanım:
Clears the current path. After this call there will be no path and no current point.
Değiştirgeler
-
context -
A valid CairoContext object.
Dönen Değerler
Hiçbir değer dönmez.
Örnekler
Örnek 1 Nesne yönelimli kullanım
<?php
// [...]
CairoContext::newPath();
?>
Örnek 2 Yordamsal kullanım
<?php
// [...]
cairo_new_path($context);
?>
Ayrıca Bakınız
- CairoContext::appendPath() - Appends a path to current path
- CairoContext::closePath() - Closes the current path
There are no user contributed notes for this page.
