Lines Matching defs:X2
202 function setGraphArea($X1, $Y1, $X2, $Y2) {
205 $this->GArea_X2 = $X2;
236 $X2 = $i + $SkewWidth;
241 $Y1 = $this->GArea_Y1 + $X2 - $this->GArea_X1 + 1;
244 if($X2 >= $this->GArea_X2) {
245 $Y2 = $this->GArea_Y1 + $X2 - $this->GArea_X2 + 1;
246 $X2 = $this->GArea_X2 - 1;
251 new Point($X2, $Y2 + 1),
2189 $X2 = floor($XPos + $XWidth + $this->GArea_X1);
2194 if($X2 >= $this->GArea_X2) {
2195 $X2 = $this->GArea_X2 - 1;
2200 $this->addToImageMap($X1, min($Y1, $Y2), $X2, max($Y1, $Y2), $DataDescription->description[$ColName], $Data [$Key] [$ColName].$DataDescription->getYUnit(), "oBar");
2205 new Point($X2,
2392 $X2 = floor($XPos + $XWidth);
2396 if($X2 >= $this->GArea_X2) {
2397 $X2 = $this->GArea_X2 - 1;
2426 new Point($X2,
2436 new Point($X2,
2497 $X2 = cos($Angle * M_PI / 180) * ($TRadius + $RadiusScale) + $XCenter;
2504 $Plots [] = $X2;
2520 $LastX2 = $X2;
2605 $X2 = cos($Angle * M_PI / 180) * $TRadius + $XCenter;
2608 $XPos = floor(($X2 - $X1) / 2) + $X1;
3124 function addToImageMap($X1, $Y1, $X2, $Y2, $SerieName, $Value, $CallerFunction) {
3126 $this->ImageMap [] = round($X1).",".round($Y1).",".round($X2).",".round($Y2).",".$SerieName.",".$Value;