<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.imagickdraw.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'imagickdraw.pathellipticarcrelative.php',
    1 => 'ImagickDraw::pathEllipticArcRelative',
    2 => 'Draws an elliptical arc',
  ),
  'up' => 
  array (
    0 => 'class.imagickdraw.php',
    1 => 'ImagickDraw',
  ),
  'prev' => 
  array (
    0 => 'imagickdraw.pathellipticarcabsolute.php',
    1 => 'ImagickDraw::pathEllipticArcAbsolute',
  ),
  'next' => 
  array (
    0 => 'imagickdraw.pathfinish.php',
    1 => 'ImagickDraw::pathFinish',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/imagick/imagickdraw/pathellipticarcrelative.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="imagickdraw.pathellipticarcrelative" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ImagickDraw::pathEllipticArcRelative</h1>
  <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">ImagickDraw::pathEllipticArcRelative</span> &mdash; <span class="dc-title">Draws an elliptical arc</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-imagickdraw.pathellipticarcrelative-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ImagickDraw::pathEllipticArcRelative</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$rx</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$ry</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$x_axis_rotation</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$large_arc</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$sweep</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$x</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$y</code></span><br>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is
currently not documented; only its argument list is available.
</p></div>
  <p class="para">
   Draws an elliptical arc from the current point to (x, y) using relative
   coordinates. The size and orientation of the ellipse are defined by two
   radii (rx, ry) and an xAxisRotation, which indicates how the ellipse as
   a whole is rotated relative to the current coordinate system. The center
   (cx, cy) of the ellipse is calculated automatically to satisfy the
   constraints imposed by the other parameters. largeArcFlag and sweepFlag
   contribute to the automatic calculations and help determine how the arc
   is drawn. If <code class="parameter">large_arc</code> is <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> then draw the larger of the available
   arcs. If <code class="parameter">sweep</code> is true, then draw the arc matching a clock-wise
   rotation.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-imagickdraw.pathellipticarcrelative-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">rx</code></dt>
     <dd>
      <p class="para">
       x radius
      </p>
     </dd>
    
    
     <dt><code class="parameter">ry</code></dt>
     <dd>
      <p class="para">
       y radius
      </p>
     </dd>
    
    
     <dt><code class="parameter">x_axis_rotation</code></dt>
     <dd>
      <p class="para">
       x axis rotation
      </p>
     </dd>
    
    
     <dt><code class="parameter">large_arc</code></dt>
     <dd>
      <p class="para">
       large arc flag
      </p>
     </dd>
    
    
     <dt><code class="parameter">sweep</code></dt>
     <dd>
      <p class="para">
       sweep flag
      </p>
     </dd>
    
    
     <dt><code class="parameter">x</code></dt>
     <dd>
      <p class="para">
       x coordinate
      </p>
     </dd>
    
    
     <dt><code class="parameter">y</code></dt>
     <dd>
      <p class="para">
       y coordinate
      </p>
     </dd>
    
   </dl>
  </p>

 </div>

 <div class="refsect1 returnvalues" id="refsect1-imagickdraw.pathellipticarcrelative-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   No value is returned.
  </p>
 </div>


</div><?php manual_footer($setup); ?>