|
CairoContext::curveTocairo_curve_to(PECL cairo >= 0.1.0) CairoContext::curveTo -- cairo_curve_to — Adds a curve ОписаниеОбъектно-ориентированный стиль (method):
public void CairoContext::curveTo
( float $x1
, float $y1
, float $x2
, float $y2
, float $x3
, float $y3
)
Процедурный стиль:
void cairo_curve_to
( CairoContext $context
, float $x1
, float $y1
, float $x2
, float $y2
, float $x3
, float $y3
)
Adds a cubic Bezier spline to the path from the current point to position x3 ,y3 in user-space coordinates, using x1, y1 and x2, y2 as the control points. After this call the current point will be x3, y3. If there is no current point before the call to CairoContext::curveTo() this function will behave as if preceded by a call to CairoContext::moveTo() (x1, y1). Список параметров
Возвращаемые значенияЭта функция не возвращает значения после выполнения. Примеры
Пример #1 Объектно-ориентированный стиль
<?php
Пример #2 Процедурный стиль
<?php |
|