|
CairoContext::arccairo_arcAdds a circular arc DescriptionObject oriented style (method):
public void CairoContext::arc
( float
$x
, float $y
, float $radius
, float $angle1
, float $angle2
)Procedural style:
void cairo_arc
( 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 ( Parameters
Return ValuesNo value is returned. Examples
Example #1 Object oriented style
<?php
Example #2 Procedural style
<?php See Also
|