|
CairoContext::arcNegativecairo_arc_negative(PECL cairo >= 0.1.0) CairoContext::arcNegative -- cairo_arc_negative — Adds a negative arc ОписаниеОбъектно-ориентированный стиль (method):
public void CairoContext::arcNegative
( float $x
, float $y
, float $radius
, float $angle1
, float $angle2
)
Процедурный стиль:
void cairo_arc_negative
( CairoContext $context
, float $x
, float $y
, float $radius
, float $angle1
, float $angle2
)
Adds a circular arc of the given radius to the current path. The arc is centered at (x, y), begins at angle1 and proceeds in the direction of decreasing angles to end at angle2. If angle2 is greater than angle1 it will be progressively decreased by 2*M_PI until it is less than angle1. See CairoContext::arc() or cairo_arc() for more details. This function differs only in the direction of the arc between the two angles. Список параметров
Возвращаемые значенияЭта функция не возвращает значения после выполнения. Примеры
Пример #1 Объектно-ориентированный стиль
<?php
Пример #2 Процедурный стиль
<?php |
|