Lines Matching defs:X

522         /* Write the X Axis caption if set */
643 * Compute and draw the scale for X/Y charts
739 /* Process X scale */
862 /* Write the X Axis caption if set */
896 * Write the X Axis caption on the scale, if set
1478 * @brief This function draw a plot graph in an X/Y space
1488 $X = $Values[$XSerieName];
1492 $X = $this->GArea_X1 + (($X - $this->VXMin) * $this->XDivisionRatio);
1511 new Point($X + 2, $Y + 2),
1519 new Point($X + 2, $Y + 2),
1528 new Point($X + 1, $Y + 1),
1536 new Point($X + 1, $Y + 1),
1545 new Point($X + 1, $Y + 1),
1647 * series of regular positions along the X axis
1703 * X position and another the Y position
1713 $X = $Values[$XSerieName];
1717 $X = $this->GArea_X1 + (($X - $this->VXMin) * $this->XDivisionRatio);
1719 $currentPoint = new Point($X, $Y);
1787 for($X = 1; $X <= $Index; $X = $X + $Accuracy) {
1790 * value k such that $X lies between $XIn[k] and
1797 If($XIn [$k] >= $X)
1808 assert($XIn[$klo] < $X);
1809 assert($X <= $XIn[$khi]);
1812 $a = ($XIn [$khi] - $X) / $h;
1813 $b = ($X - $XIn [$klo]) / $h;
1828 if($XLast != -1 && !isset ($Missing [floor($X)]) && !isset ($Missing [floor($X + 1)]))
1876 /* Typically $Sig will be 0.5, since each X value will be
1945 for($X = 1; $X <= $numElements; $X = $X + $Accuracy) {
1951 If($XIn [$k] >= $X)
1959 $a = ($XIn [$khi] - $X) / $h;
1960 $b = ($X - $XIn [$klo]) / $h;
1965 if($YLast != NULL && $AroundZero && !isset ($Missing [floor($X)]) && !isset ($Missing [floor($X + 1)])) {
1985 if(!isset ($Missing [floor($X)]) || $YLast == NULL) {
2534 $X = cos($Angle * M_PI / 180) * $TRadius + $XCenter;
2540 new Point($X, $Y),
2545 $LastX = $X;
2553 $X = cos($Angle * M_PI / 180) * $Radius + $XCenter;
2558 new Point($X, $Y),
2589 new Point($X + $XOffset, $Y + $YOffset),
2612 $X = $XPos - ($X + $Positions [2] - $X + $Positions [6]) / 2;
2616 new Point($X + $Positions [6] - 2,
2618 new Point($X + $Positions [2] + 4,
2628 new Point($X + $Positions [6] - 2,
2630 new Point($X + $Positions [2] + 4,
2641 new Point($X, $Y),
2899 function drawFromPNG($FileName, $X, $Y, $Alpha = 100) {
2900 $this->drawFromPicture(1, $FileName, $X, $Y, $Alpha);
2906 function drawFromGIF($FileName, $X, $Y, $Alpha = 100) {
2907 $this->drawFromPicture(2, $FileName, $X, $Y, $Alpha);
2913 function drawFromJPG($FileName, $X, $Y, $Alpha = 100) {
2914 $this->drawFromPicture(3, $FileName, $X, $Y, $Alpha);
2920 function drawFromPicture($PicType, $FileName, $X, $Y, $Alpha = 100) {
2935 imagecopymerge($this->canvas->getPicture(), $Raster, $X, $Y, 0, 0, $Width, $Height, $Alpha);